2022-04-24 09:05:15 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2023-03-06 10:06:43 +04:00
|
|
|
<RootNamespace>Ragon.Relay</RootNamespace>
|
2024-04-14 19:23:08 +03:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2022-04-24 09:05:15 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-05-14 10:35:17 +04:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-04-24 09:05:15 +04:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="NLog.config">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2022-12-20 12:20:52 -08:00
|
|
|
<None Update="relay.config.json">
|
2022-04-24 09:05:15 +04:00
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-03-06 10:06:43 +04:00
|
|
|
<None Update="libenet.dylib">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2022-04-24 09:05:15 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-30 08:20:17 +04:00
|
|
|
<ItemGroup>
|
2023-03-06 10:06:43 +04:00
|
|
|
<ProjectReference Include="..\Ragon.Server\Ragon.Server.csproj" />
|
2022-04-30 08:20:17 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-19 08:54:49 +03:00
|
|
|
<ItemGroup>
|
2024-11-03 11:36:58 +03:00
|
|
|
<PackageReference Include="ENet-CSharp" Version="2.4.8" />
|
2024-05-19 08:54:49 +03:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
<PackageReference Include="NLog" Version="5.3.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-04-24 09:05:15 +04:00
|
|
|
</Project>
|