mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
35 lines
1.5 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFramework>netcoreapp2.1</TargetFramework> |
|
<IsPackable>true</IsPackable> |
|
<PackAsTool>true</PackAsTool> |
|
<AssemblyName>ilspycmd</AssemblyName> |
|
<ToolCommandName>ilspycmd</ToolCommandName> |
|
<Version>2.0.0</Version> |
|
<Description>Command-line decompiler using the ILSpy decompilation engine</Description> |
|
<Copyright>Copyright 2011-2018 AlphaSierraPapa</Copyright> |
|
<PackageProjectUrl>https://github.com/icsharpcode/ILSpy/</PackageProjectUrl> |
|
<PackageLicenseUrl>https://opensource.org/licenses/mit-license.php</PackageLicenseUrl> |
|
<PackageIconUrl>https://ilspy.net/images/icon32.png</PackageIconUrl> |
|
<RepositoryUrl>https://github.com/icsharpcode/ILSpy/</RepositoryUrl> |
|
<Company /> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
|
<WarningsAsErrors>NU1605</WarningsAsErrors> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.2.0" /> |
|
<PackageReference Include="ICSharpCode.Decompiler" Version="4.0.0.4285-beta1" /> |
|
|
|
<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>
|
|
|