mirror of https://github.com/icsharpcode/ILSpy.git
17 lines
440 B
17 lines
440 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>netstandard2.0</TargetFramework> |
|
<LangVersion>7.2</LangVersion> |
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Mono.Cecil" Version="0.10.3" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|