Files

28 lines
806 B
XML
Raw Permalink Normal View History

2024-11-03 11:36:58 +03:00
2023-03-06 10:06:43 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<RootNamespace>Ragon.Client.Simulation</RootNamespace>
<Authors>Eduard Kargin</Authors>
2023-07-29 10:58:06 +03:00
<TargetFramework>netstandard2.0</TargetFramework>
2023-03-06 10:06:43 +04:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>none</DebugType>
2024-04-07 17:11:45 +03:00
<OutputPath></OutputPath>
2023-03-06 10:06:43 +04:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
2024-04-07 17:11:45 +03:00
<OutputPath></OutputPath>
2023-03-06 10:06:43 +04:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Ragon.Protocol\Ragon.Protocol.csproj" />
</ItemGroup>
</Project>