Contest.Server.csproj 718 B

123456789101112131415161718192021222324
  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. <ProjectReference Include="..\contest.client\contest.client.esproj">
  12. <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  13. </ProjectReference>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Microsoft.AspNetCore.SpaProxy">
  17. <Version>6.*-*</Version>
  18. </PackageReference>
  19. </ItemGroup>
  20. </Project>