Files
Ragon/Ragon.Relay/Ragon.Relay.csproj
T

27 lines
720 B
XML
Raw Permalink Normal View History

2022-04-24 09:05:15 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Game</RootNamespace>
</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>
</ItemGroup>
2022-04-30 08:20:17 +04:00
<ItemGroup>
2022-12-16 00:05:46 +04:00
<ProjectReference Include="..\Ragon.Core\Ragon.Core.csproj" />
2022-04-30 08:20:17 +04:00
</ItemGroup>
2022-04-24 09:05:15 +04:00
</Project>