26 lines
914 B
XML
26 lines
914 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>Ragon.Core</RootNamespace>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Version>1.4.0</Version>
|
|
<Title>Ragon.Server</Title>
|
|
<Copyright>Eduard Kargin</Copyright>
|
|
<Authors>Eduard Kargin</Authors>
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://ragon.io</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/edmand46/Ragon</RepositoryUrl>
|
|
<RepositoryType>Source</RepositoryType>
|
|
<LangVersion>10</LangVersion>
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ragon.Protocol\Ragon.Protocol.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|