123456789101112131415161718192021222324 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <SpaRoot>..\Contest.Client</SpaRoot>
- <SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
- <SpaProxyServerUrl>https://localhost:5173</SpaProxyServerUrl>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Contest.Client\Contest.Client.esproj">
- <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.SpaProxy">
- <Version>6.*-*</Version>
- </PackageReference>
- </ItemGroup>
- </Project>
|