2022-04-24 09:05:15 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
|
|
|
<Nullable>disable</Nullable>
|
|
|
|
|
<LangVersion>8</LangVersion>
|
2022-12-16 00:05:46 +04:00
|
|
|
<RootNamespace>Ragon.Common</RootNamespace>
|
2023-07-23 11:23:38 +03:00
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<Title>Ragon.Protocol</Title>
|
|
|
|
|
<Copyright>Eduard Kargin</Copyright>
|
2024-05-19 12:25:56 +03:00
|
|
|
<Version>1.4.0</Version>
|
|
|
|
|
<Authors>Eduard Kargin</Authors>
|
|
|
|
|
<PackageProjectUrl>https://ragon.io</PackageProjectUrl>
|
2023-07-23 11:23:38 +03:00
|
|
|
<RepositoryUrl>https://github.com/edmand46/Ragon</RepositoryUrl>
|
|
|
|
|
<RepositoryType>Source</RepositoryType>
|
|
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
2023-07-29 10:58:06 +03:00
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
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' ">
|
2023-07-23 11:23:38 +03:00
|
|
|
<OutputPath></OutputPath>
|
|
|
|
|
<DefineConstants>TRACE;</DefineConstants>
|
2023-03-06 10:06:43 +04:00
|
|
|
<DebugType>none</DebugType>
|
2022-04-24 09:05:15 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|