Files

31 lines
1.2 KiB
XML
Raw Permalink Normal View History

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>
<PackageProjectUrl>https://ragon-server.com</PackageProjectUrl>
<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' ">
<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>