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>
|
|
|
|
|
</PropertyGroup>
|
2024-12-30 22:54:38 -05:00
|
|
|
|
|
2024-06-11 19:18:48 -04:00
|
|
|
|
<ItemGroup>
|
2024-06-26 14:45:54 -04:00
|
|
|
|
<PackageReference Include="dnlib" Version="4.4.0" />
|
2024-06-11 19:18:48 -04:00
|
|
|
|
</ItemGroup>
|
2024-08-09 21:39:39 +01:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\DumpLib\DumpLib.csproj" />
|
|
|
|
|
</ItemGroup>
|
2024-06-11 19:18:48 -04:00
|
|
|
|
</Project>
|