Files
Ragon/Ragon.Protocol/Ragon.Protocol.csproj
T

24 lines
891 B
XML
Raw Normal View History

2022-04-24 09:05:15 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>8</LangVersion>
<TargetFramework>netstandard2.1</TargetFramework>
2022-12-16 00:05:46 +04:00
<RootNamespace>Ragon.Common</RootNamespace>
2022-04-24 09:05:15 +04:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath></OutputPath>
2022-04-24 09:05:15 +04:00
<DebugSymbols>false</DebugSymbols>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2022-04-30 08:20:17 +04:00
<DefineConstants>TRACE;NETSTACK_SPAN</DefineConstants>
2022-04-24 09:05:15 +04:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
2023-03-06 10:06:43 +04:00
<OutputPath>C:\Users\edmand46\RagonProjects\ragon-unity-sdk\Assets\Ragon-Unity-SDK\Runtime\Plugins</OutputPath>
2022-04-30 08:20:17 +04:00
<DefineConstants>TRACE;NETSTACK_SPAN</DefineConstants>
2023-03-06 10:06:43 +04:00
<DebugType>none</DebugType>
2022-04-24 09:05:15 +04:00
</PropertyGroup>
</Project>