aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-05-24 21:55:11 -0700
committerRob Mensching <rob@firegiant.com>2022-05-24 22:44:20 -0700
commita79996ed98978a6bf8f87020331ec5f95d9540bf (patch)
tree71d5ae9d3ed08c6d7b808516bda58e27f16f460d
parent46fb0597d4d6192833ddcf836f4bcf6295ef0aaf (diff)
downloadwix-a79996ed98978a6bf8f87020331ec5f95d9540bf.tar.gz
wix-a79996ed98978a6bf8f87020331ec5f95d9540bf.tar.bz2
wix-a79996ed98978a6bf8f87020331ec5f95d9540bf.zip
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.
-rw-r--r--src/Directory.Build.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index 90de177c..8e013300 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -6,7 +6,7 @@
6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 6 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink> 7 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink>
8 <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> 8 <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
9 <NoWarn>$(NoWarn);MSB3026</NoWarn> 9 <NoWarn>$(NoWarn);NU1507;MSB3026</NoWarn>
10 10
11 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> 11 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName>
12 <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</RootBuildFolder> 12 <RootBuildFolder>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</RootBuildFolder>