Files
MadMin3r-UnconfuserEx/UnConfuserEx/UnConfuserEx.csproj
T
Emik 8c820c2c60 Add support for macOS/Linux/anything that can run a .NET 9 Console Application (#22)
* Enforce .NET 9 SDK targeting

* Add compatibility for macOS/Linux
2026-05-09 07:40:46 +01:00

31 lines
852 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="LZMA-SDK" Version="22.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MSILEmulator\MSILEmulator.csproj" />
<ProjectReference Include="..\X86Emulator\X86Emulator.csproj" />
</ItemGroup>
</Project>