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' ">
|
2022-05-14 10:36:21 +04:00
|
|
|
<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' ">
|
2022-05-14 10:36:21 +04:00
|
|
|
<OutputPath></OutputPath>
|
2022-04-30 08:20:17 +04:00
|
|
|
<DefineConstants>TRACE;NETSTACK_SPAN</DefineConstants>
|
2022-04-24 09:05:15 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|