@joebigelow / wix / commits / a79996ed

Ignore NU1507 to work-around Centrally Versioned Packaging change

Centrally Versioned Packaging made a change at RTM to dissuade the use of multiple NuGet repositories. The WiX build is designed to use multiple repositories specifically ordered to provide the appropriate fallback behavior, so disabling this new warning globally.

Rob Mensching committed May 24, 2022 at 21:55 UTC a79996ed98978a6bf8f87020331ec5f95d9540bf
1 file changed +1 -1
src/Directory.Build.props
+1 -1
@@ -6,7 +6,7 @@
6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink>
8 <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
9 - <NoWarn>$(NoWarn);MSB3026</NoWarn>
9 + <NoWarn>$(NoWarn);NU1507;MSB3026</NoWarn>
10
11 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName>
12 <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</RootBuildFolder>