You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
901 B

  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <UserSecretsId>25c82ccd-f64b-45a0-98a0-b0393dd84477</UserSecretsId>
  7. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  8. <DockerfileContext>..\..</DockerfileContext>
  9. <SpaRoot>..\awesomemicroservices.client</SpaRoot>
  10. <SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
  11. <SpaProxyServerUrl>https://localhost:56902</SpaProxyServerUrl>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.AspNetCore.SpaProxy">
  15. <Version>8.*-*</Version>
  16. </PackageReference>
  17. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
  18. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
  19. </ItemGroup>
  20. </Project>