| 1234567891011121314151617181920 | 
							- <Project Sdk="Microsoft.NET.Sdk">
 
- 	<PropertyGroup>
 
- 		<OutputType>WinExe</OutputType>
 
- 		<TargetFramework>net8.0-windows</TargetFramework>
 
- 		<OutputPath>$(SolutionDir)Binary\Server</OutputPath>
 
- 		<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
 
- 		<ImplicitUsings>enable</ImplicitUsings>
 
- 		<Nullable>enable</Nullable>
 
- 		<UseWPF>true</UseWPF>
 
- 		<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
 
- 	</PropertyGroup>
 
- 	<ItemGroup>
 
- 		<FrameworkReference Include="Microsoft.AspNetCore.App" />
 
- 	</ItemGroup>
 
- 	<ItemGroup>
 
- 	  <PackageReference Include="Microsoft.AspNetCore.SignalR.Common" />
 
- 	</ItemGroup>
 
- </Project>
 
 
  |