24 lines
891 B
XML
24 lines
891 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<LangVersion>8</LangVersion>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<RootNamespace>Ragon.Common</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<OutputPath></OutputPath>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DefineConstants>TRACE;NETSTACK_SPAN</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<OutputPath>C:\Users\edmand46\RagonProjects\ragon-unity-sdk\Assets\Ragon-Unity-SDK\Runtime\Plugins</OutputPath>
|
|
<DefineConstants>TRACE;NETSTACK_SPAN</DefineConstants>
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
</Project>
|