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.
65 lines
2.8 KiB
65 lines
2.8 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<IsPackable>true</IsPackable>
|
|
<PackAsTool>true</PackAsTool>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<GenerateAssemblyVersionAttribute>False</GenerateAssemblyVersionAttribute>
|
|
<GenerateAssemblyFileVersionAttribute>False</GenerateAssemblyFileVersionAttribute>
|
|
<GenerateAssemblyInformationalVersionAttribute>False</GenerateAssemblyInformationalVersionAttribute>
|
|
<AssemblyName>ilspycmd</AssemblyName>
|
|
<ToolCommandName>ilspycmd</ToolCommandName>
|
|
<Description>Command-line decompiler using the ILSpy decompilation engine</Description>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageVersion>8.0.0.0-noversion</PackageVersion>
|
|
<Copyright>Copyright 2011-$([System.DateTime]::Now.Year) AlphaSierraPapa</Copyright>
|
|
<PackageProjectUrl>https://github.com/icsharpcode/ILSpy/</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageIcon>ILSpyCmdNuGetPackageIcon.png</PackageIcon>
|
|
<RepositoryUrl>https://github.com/icsharpcode/ILSpy/</RepositoryUrl>
|
|
<Company>ic#code</Company>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Authors>ILSpy Team</Authors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<WarningsAsErrors>NU1605</WarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\packages.props" />
|
|
|
|
<ItemGroup>
|
|
<None Include="ILSpyCmdNuGetPackageIcon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ICSharpCode.ILSpyX\ICSharpCode.ILSpyX.csproj" />
|
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
|
|
<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>
|
|
|
|
<Target Name="ILSpyUpdateAssemblyInfo" AfterTargets="ResolveProjectReferences">
|
|
<ReadLinesFromFile ContinueOnError="true" File="..\VERSION">
|
|
<Output TaskParameter="Lines" PropertyName="PackageVersion" />
|
|
</ReadLinesFromFile>
|
|
</Target>
|
|
|
|
</Project>
|