2024-04-11 13:30:43 +07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<RootNamespace>CHUNITHM_Patch_Finder</RootNamespace>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-04-11 15:44:23 +07:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-04-11 13:30:43 +07:00
|
|
|
|
<PackageReference Include="Reloaded.Memory.Sigscan" Version="3.1.8" />
|
|
|
|
|
<PackageReference Include="YamlDotNet" Version="15.1.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-04-12 04:40:48 +07:00
|
|
|
|
<ContentWithTargetPath Include="Patterns/**">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>Patterns/%(RecursiveDir)/%(Filename)%(Extension)</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
2024-04-11 13:30:43 +07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|