Browse Source

Fix #2644: Ignore warnings MSB3277 and VSSDK1009

pull/2665/head
Siegfried Pammer 3 years ago
parent
commit
bf3b93ec76
  1. 4
      ILSpy.AddIn.VS2022/ILSpy.AddIn.VS2022.csproj
  2. 4
      ILSpy.AddIn/ILSpy.AddIn.csproj

4
ILSpy.AddIn.VS2022/ILSpy.AddIn.VS2022.csproj

@ -18,6 +18,10 @@ @@ -18,6 +18,10 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<NoWarn>
MSB3277;<!-- this is due to Visual Studio package references weirdness, see https://github.com/dotnet/roslyn/discussions/49787 -->
VSSDK1009
</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">

4
ILSpy.AddIn/ILSpy.AddIn.csproj

@ -19,6 +19,10 @@ @@ -19,6 +19,10 @@
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<NoWarn>
MSB3277;<!-- this is due to Visual Studio package references weirdness, see https://github.com/dotnet/roslyn/discussions/49787 -->
VSSDK1009
</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">

Loading…
Cancel
Save