mirror of
https://github.com/sp-tarkov/assembly-tool.git
synced 2025-02-12 14:50:44 -05:00
22 lines
614 B
XML
22 lines
614 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Version>0.1.0</Version>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
|
<Configurations>Debug;Release;WAIT_FOR_DEBUGGER</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="dnlib" Version="4.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DumpLib\DumpLib.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|