Skip to content

Commit

Permalink
Disable NU1505 warning until dotnet/sdk#24747 is fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanya-Solyanik committed Apr 15, 2022
1 parent 2bb30de commit 2912817
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- NU1505 reports duplicate package download for Microsoft.NETCore.App.Host.win-x64.
Disabling this warning until https://github.com/dotnet/sdk/issues/24747 is fixed.-->
<NoWarn>$(NoWarn);NU1505</NoWarn>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Microsoft.VisualBasic.Facade.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
<AssemblyName>AccessibilityTests</AssemblyName>
<!--<TargetFrameworks>net472;net6.0-windows</TargetFrameworks>-->
<ApplicationManifest>app1.manifest</ApplicationManifest>

<EnableXlfLocalization>false</EnableXlfLocalization>
<UpdateXlfOnBuild>false</UpdateXlfOnBuild>
<!-- NU1505 reports duplicate package download for Microsoft.NETCore.App.Host.win-x64.
Disabling this warning until https://github.com/dotnet/sdk/issues/24747 is fixed.-->
<NoWarn>$(NoWarn);NU1505</NoWarn>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\System.Windows.Forms.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<StartupObject />
<EnableXlfLocalization>false</EnableXlfLocalization>
<UpdateXlfOnBuild>false</UpdateXlfOnBuild>

<NoWarn>$(NoWarn),SA1633,CS8002</NoWarn>
<!-- NU1505 reports duplicate package download for Microsoft.NETCore.App.Host.win-x64.
Disabling this warning until https://github.com/dotnet/sdk/issues/24747 is fixed.-->
<NoWarn>$(NoWarn);SA1633;CS8002;NU1505</NoWarn>
<Copyright>Copyright © Paolo Foti 2008</Copyright>
<Company />
<Authors>Paolo Foti</Authors>
<PackageLicenseExpression>CPOL</PackageLicenseExpression>
<PackageProjectUrl>https://www.codeproject.com/Articles/24385/Have-a-Great-DesignTime-Experience-with-a-Powerful</PackageProjectUrl>

<SuppressLicenseValidation>true</SuppressLicenseValidation>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
<AssemblyName>NativeHost.ManagedControl</AssemblyName>
<Platforms>x86;x64</Platforms>
<EnableComHosting>true</EnableComHosting>

<EnableXlfLocalization>false</EnableXlfLocalization>
<UpdateXlfOnBuild>false</UpdateXlfOnBuild>
<!-- NU1505 reports duplicate package download for Microsoft.NETCore.App.Host.win-x64.
Disabling this warning until https://github.com/dotnet/sdk/issues/24747 is fixed.-->
<NoWarn>$(NoWarn);NU1505</NoWarn>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\System.Windows.Forms.Primitives\src\System.Windows.Forms.Primitives.csproj" />
<ProjectReference Include="..\..\..\src\System.Windows.Forms.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
</PropertyGroup>

<PropertyGroup>
<NoWarn>$(NoWarn),WFDEV001</NoWarn>
<!-- NU1505 reports duplicate package download for Microsoft.NETCore.App.Host.win-x64.
Disabling this warning until https://github.com/dotnet/sdk/issues/24747 is fixed.-->
<NoWarn>$(NoWarn),WFDEV001;NU1505</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 2912817

Please sign in to comment.