EEMSCenter.csproj 672 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Server</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <Nullable>enable</Nullable>
  9. <UseWPF>true</UseWPF>
  10. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Microsoft.AspNetCore.SignalR.Common" />
  17. </ItemGroup>
  18. </Project>