From d22d6843eccd663142d7631573fbdfaeef4c5a34 Mon Sep 17 00:00:00 2001 From: "Jeffrey T. Fritz" Date: Sat, 4 Nov 2023 11:11:15 -0400 Subject: [PATCH 1/3] Updated to Net8 rc2 --- global.json | 2 +- .../TagzApp.Storage.Postgres.csproj | 4 ++-- src/TagzApp.Web/TagzApp.Web.csproj | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/global.json b/global.json index 7a76b504..b21472e4 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "8.0.100-rc.1.23463.5" + "version": "8.0.100-rc.2.*" } } \ No newline at end of file diff --git a/src/TagzApp.Storage.Postgres/TagzApp.Storage.Postgres.csproj b/src/TagzApp.Storage.Postgres/TagzApp.Storage.Postgres.csproj index ff320031..aac2c760 100644 --- a/src/TagzApp.Storage.Postgres/TagzApp.Storage.Postgres.csproj +++ b/src/TagzApp.Storage.Postgres/TagzApp.Storage.Postgres.csproj @@ -8,8 +8,8 @@ - - + + diff --git a/src/TagzApp.Web/TagzApp.Web.csproj b/src/TagzApp.Web/TagzApp.Web.csproj index 16bddb52..4390fdb2 100644 --- a/src/TagzApp.Web/TagzApp.Web.csproj +++ b/src/TagzApp.Web/TagzApp.Web.csproj @@ -22,21 +22,21 @@ - + - - - - - - - + + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + From 901b5de04c1a8ebb79407af1a43193c3ebcc49cf Mon Sep 17 00:00:00 2001 From: "Jeffrey T. Fritz" Date: Sat, 4 Nov 2023 11:14:55 -0400 Subject: [PATCH 2/3] Updated dockerfile to latest 8.0 image --- src/TagzApp.Web/dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TagzApp.Web/dockerfile b/src/TagzApp.Web/dockerfile index 895b1b25..34051f52 100644 --- a/src/TagzApp.Web/dockerfile +++ b/src/TagzApp.Web/dockerfile @@ -1,11 +1,11 @@ # docker build -t web -f TagzApp.Web/dockerfile . -FROM mcr.microsoft.com/dotnet/aspnet:8.0.0-rc.1 AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base WORKDIR /app EXPOSE 80 EXPOSE 443 -FROM mcr.microsoft.com/dotnet/nightly/sdk:8.0.100-rc.1 AS build +FROM mcr.microsoft.com/dotnet/nightly/sdk:8.0.100 AS build ARG BUILD_CONFIGURATION=Release ARG Build_Version=1.0.0 WORKDIR /src From 0231ca6e004093e38e5de68af3b241468e505eb4 Mon Sep 17 00:00:00 2001 From: "Jeffrey T. Fritz" Date: Sat, 4 Nov 2023 11:16:26 -0400 Subject: [PATCH 3/3] Set a full version of SDK in global.json --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index b21472e4..1cccce57 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "8.0.100-rc.2.*" + "version": "8.0.100-rc.2.23502.2" } } \ No newline at end of file