Contest.Server.csproj 531 B

123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <SpaRoot>..\Contest.Client</SpaRoot>
  7. <SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
  8. <SpaProxyServerUrl>https://localhost:5173</SpaProxyServerUrl>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Microsoft.AspNetCore.SpaProxy">
  12. <Version>6.*-*</Version>
  13. </PackageReference>
  14. </ItemGroup>
  15. </Project>