mirror of
https://github.com/Zypherion-Technologies/UnConfuserEx
synced 2026-06-23 09:25:30 +00:00
32 lines
962 B
XML
32 lines
962 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="log4net.xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="log4net.xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutomaticGraphLayout.GraphViewerGDI" Version="1.1.12" />
|
|
<PackageReference Include="dnlib" Version="4.4.0" />
|
|
<PackageReference Include="log4net" Version="3.0.3" />
|
|
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
|
|
<PackageReference Include="LZMA-SDK" Version="22.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MSILEmulator\MSILEmulator.csproj" />
|
|
<ProjectReference Include="..\X86Emulator\X86Emulator.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|