2022-12-16 00:05:46 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<RootNamespace>Ragon.WebSockets</RootNamespace>
|
2024-05-19 12:25:56 +03:00
|
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
|
|
|
|
<Copyright>Eduard Kargin</Copyright>
|
|
|
|
|
<Authors>Eduard Kargin</Authors>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<Version>1.4.0</Version>
|
|
|
|
|
<Title>Ragon Server WebSocket</Title>
|
|
|
|
|
<Description>Ragon Server WebSocket transport</Description>
|
|
|
|
|
<PackageProjectUrl>https://ragon.io</PackageProjectUrl>
|
|
|
|
|
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
|
|
|
|
<RepositoryUrl>https://github.com/edmand46/Ragon</RepositoryUrl>
|
|
|
|
|
<RepositoryType>Source</RepositoryType>
|
2022-12-16 00:05:46 +04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-12-20 12:20:52 -08:00
|
|
|
<ItemGroup>
|
2023-03-06 10:06:43 +04:00
|
|
|
<ProjectReference Include="..\Ragon.Server\Ragon.Server.csproj" />
|
2022-12-20 12:20:52 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-11-03 11:36:58 +03:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Sources\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-12-16 00:05:46 +04:00
|
|
|
</Project>
|