2022-11-05 18:35:39 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2022-11-16 17:37:31 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<OutDir>..\..\bin\Tools\DataDumper</OutDir>
|
|
|
|
</PropertyGroup>
|
2022-11-05 18:35:39 +08:00
|
|
|
|
2022-11-16 17:37:31 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
|
|
</ItemGroup>
|
2022-11-05 18:35:39 +08:00
|
|
|
|
2022-11-16 17:37:31 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\Core\RageCoop.Core.csproj" />
|
|
|
|
</ItemGroup>
|
2022-11-05 18:35:39 +08:00
|
|
|
|
|
|
|
</Project>
|