2022-12-16 00:05:46 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2023-03-06 10:06:43 +04:00
|
|
|
<RootNamespace>Ragon.Core</RootNamespace>
|
2023-07-23 11:23:38 +03:00
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<Version>1.2.4-rc</Version>
|
|
|
|
|
<Title>Ragon.Server</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>
|
|
|
|
|
<LangVersion>10</LangVersion>
|
|
|
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
2022-12-16 00:05:46 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-03-06 10:06:43 +04:00
|
|
|
<ItemGroup>
|
2023-07-23 11:23:38 +03:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
|
|
|
<PackageReference Include="NLog" Version="5.2.2" />
|
2023-03-06 10:06:43 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-12-16 00:05:46 +04:00
|
|
|
<ItemGroup>
|
2023-07-23 11:23:38 +03:00
|
|
|
<ProjectReference Include="..\Ragon.Protocol\Ragon.Protocol.csproj" />
|
2022-12-16 00:05:46 +04:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-10-04 14:42:59 +03:00
|
|
|
|
2022-12-16 00:05:46 +04:00
|
|
|
</Project>
|