24 lines
785 B
XML
24 lines
785 B
XML
|
|
<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>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||
|
|
<OutputPath>/Users/edmand46/UnityProjects/ragon-client/Assets/RagonSDK/</OutputPath>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Folder Include="External" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|