Files
Ragon/Ragon.Common/Ragon.Common.csproj
T

26 lines
907 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>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>/Users/edmand46/UnityProjects/ragon-client/Assets/RagonSDK/</OutputPath>
<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' ">
<OutputPath>/Users/edmand46/UnityProjects/ragon-client/Assets/RagonSDK/</OutputPath>
2022-04-30 08:20:17 +04:00
<DefineConstants>TRACE;NETSTACK_SPAN</DefineConstants>
2022-04-24 09:05:15 +04:00
</PropertyGroup>
<ItemGroup>
<Folder Include="External" />
</ItemGroup>
</Project>