Skip to content

Commit

Permalink
update sample base image (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
WeihanLi committed Nov 17, 2023
1 parent d6c370d commit 74c4070
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion samples/eShopLite/ApiGateway/ApiGateway.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ContainerRegistry>localhost:5001</ContainerRegistry>
<ContainerRepository>api-gateway</ContainerRepository>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0-preview</ContainerBaseImage>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0</ContainerBaseImage>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/eShopLite/BasketService/BasketService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<UserSecretsId>f0611710-1eab-4ff6-a476-9610bb7a8416</UserSecretsId>
<ContainerRegistry>localhost:5001</ContainerRegistry>
<ContainerRepository>basket-service</ContainerRepository>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0-preview</ContainerBaseImage>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0</ContainerBaseImage>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/eShopLite/CatalogService/CatalogService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<LangVersion>preview</LangVersion>
<ContainerRegistry>localhost:5001</ContainerRegistry>
<ContainerRepository>catalog-service</ContainerRepository>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0-preview</ContainerBaseImage>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0</ContainerBaseImage>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion samples/eShopLite/MyFrontend/MyFrontend.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ContainerRegistry>localhost:5001</ContainerRegistry>
<ContainerRepository>my-frontend</ContainerRepository>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0-preview</ContainerBaseImage>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0</ContainerBaseImage>
<!-- Razor tooling sometimes raises this warning. Don't make it an error. -->
<WarningsNotAsErrors>$(WarningsNotAsErrors);RZ10012;RZ10021</WarningsNotAsErrors>
<!-- Razor tooling incorrectly reports this warning -->
Expand Down

1 comment on commit 74c4070

@davidfowl
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should be able to remove this @WeihanLi

Please sign in to comment.