0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 02:50:45 -05:00
assembly-tool/RecodeItLib/ReCodeItLib.csproj

22 lines
614 B
XML
Raw Normal View History

2024-06-11 19:18:48 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-06-19 21:40:10 -04:00
<Version>0.1.0</Version>
2024-06-13 18:15:52 -04:00
<OutputType>Library</OutputType>
2025-01-11 01:43:59 -05:00
<TargetFramework>net9.0</TargetFramework>
2024-06-11 19:18:48 -04:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2025-01-11 06:08:17 -05:00
<ServerGarbageCollection>true</ServerGarbageCollection>
<Configurations>Debug;Release;WAIT_FOR_DEBUGGER</Configurations>
<Platforms>AnyCPU</Platforms>
2024-06-11 19:18:48 -04:00
</PropertyGroup>
2024-06-11 19:18:48 -04:00
<ItemGroup>
<PackageReference Include="dnlib" Version="4.4.0" />
2024-06-11 19:18:48 -04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DumpLib\DumpLib.csproj" />
</ItemGroup>
2024-06-11 19:18:48 -04:00
</Project>