Skip to content

Commit

Permalink
few more 6.0 references
Browse files Browse the repository at this point in the history
  • Loading branch information
smithrobs authored and justinvp committed Nov 8, 2024
1 parent 802a917 commit 08d8b88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions container-azure-csharp/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /app

COPY *.csproj ./
Expand All @@ -7,7 +7,7 @@ RUN dotnet restore
COPY . .
RUN dotnet publish -c Release -o out

FROM mcr.microsoft.com/dotnet/aspnet:6.0 as base
FROM mcr.microsoft.com/dotnet/aspnet:8.0 as base
WORKDIR /app

COPY --from=build /app/out .
Expand Down
4 changes: 2 additions & 2 deletions container-gcp-csharp/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /app

COPY *.csproj ./
Expand All @@ -7,7 +7,7 @@ RUN dotnet restore
COPY . .
RUN dotnet publish -c Release -o out

FROM mcr.microsoft.com/dotnet/aspnet:6.0 as base
FROM mcr.microsoft.com/dotnet/aspnet:8.0 as base
WORKDIR /app

COPY --from=build /app/out .
Expand Down
2 changes: 1 addition & 1 deletion serverless-azure-csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
Kind = "FunctionApp",
SiteConfig = new AzureNative.Web.Inputs.SiteConfigArgs
{
NetFrameworkVersion = "v6.0",
NetFrameworkVersion = "v8.0",
DetailedErrorLoggingEnabled = true,
HttpLoggingEnabled = true,
AppSettings = new[]
Expand Down

0 comments on commit 08d8b88

Please sign in to comment.