Browse Source

NU1605 Fix (not suppressing the warning but actually importing the correct Nuget packages)

pull/998/merge
Christoph Wille 8 years ago
parent
commit
fbeb1b3522
  1. 16
      ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
  2. 2
      ICSharpCode.Decompiler.PowerShell/ICSharpCode.Decompiler.PowerShell.csproj

16
ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj

@ -3,13 +3,23 @@ @@ -3,13 +3,23 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<AssemblyName>ilspycmd</AssemblyName>
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<AssemblyName>ilspycmd</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors>NU1605</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.0.1" />
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3362-beta3" />
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3367-beta3" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
<PackageReference Include="System.Runtime.Handles" Version="4.3.0" />
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.3.0" />
</ItemGroup>
</Project>

2
ICSharpCode.Decompiler.PowerShell/ICSharpCode.Decompiler.PowerShell.csproj

@ -8,7 +8,7 @@ @@ -8,7 +8,7 @@
<ItemGroup>
<PackageReference Include="PowerShellStandard.Library" Version="3.0.0-preview-01" />
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3362-beta3" />
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0.3367-beta3" />
</ItemGroup>
</Project>

Loading…
Cancel
Save