diff --git a/.github/actions/spell-check/expect.txt b/.github/actions/spell-check/expect.txt index c275d6725f..004d9f4269 100644 --- a/.github/actions/spell-check/expect.txt +++ b/.github/actions/spell-check/expect.txt @@ -1118,6 +1118,7 @@ NOTSRCCOPY NOTSRCERASE notwindows NOTXORPEN +nowarn NOZORDER NPH npmjs diff --git a/.pipelines/verifyNugetPackages.ps1 b/.pipelines/verifyNugetPackages.ps1 index 54d0137121..c7cebbd383 100644 --- a/.pipelines/verifyNugetPackages.ps1 +++ b/.pipelines/verifyNugetPackages.ps1 @@ -21,4 +21,13 @@ if (-not $?) exit 1 } +# Ignore NU1503 on vcxproj files +dotnet restore $solution /nowarn:NU1503 +if ($lastExitCode -ne 0) +{ + $result = $lastExitCode + Write-Error "Error running dotnet restore, with the exit code $lastExitCode. Please verify logs on the nuget package versions." + exit $result +} + exit 0 diff --git a/Directory.Packages.props b/Directory.Packages.props index 808d2d5ebc..a5270e7d75 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -65,7 +65,8 @@ - + + diff --git a/NOTICE.md b/NOTICE.md index 058f0863b1..bedc11379d 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -1522,6 +1522,7 @@ SOFTWARE. - ModernWpfUI - Moq - MSTest +- NLog - NLog.Extensions.Logging - NLog.Schema - OpenAI diff --git a/src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj b/src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj index e9179e6ddf..67f7ead02c 100644 --- a/src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj +++ b/src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj @@ -30,6 +30,7 @@ +