18 lines
618 B
XML
18 lines
618 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.AspNet.SignalR.SelfHost" Version="2.4.3" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.10" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.1" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|