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 (Edmand46)</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>
|
2023-10-12 17:40:57 +03:00
|
|
|
<OutputPath>/Users/edmand46/RagonProjects/ragon-oss-examples/Assets/Ragon/Runtime/Plugins</OutputPath>
|
2023-03-06 10:06:43 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-07-30 16:56:11 +03:00
|
|
|
<OutputPath>/Users/edmand46/RagonProjects/ragon-oss-examples/Assets/Ragon/Plugins/</OutputPath>
|
2023-03-06 10:06:43 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Ragon.Protocol\Ragon.Protocol.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|