From 0edaba577d03a12ad1729d23a6741e5ffb941123 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 25 Aug 2025 21:57:18 +0000 Subject: [PATCH 1/3] Initial plan From 623ef5d2009973c2d117a07bfe95fafff59305a0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 25 Aug 2025 22:05:33 +0000 Subject: [PATCH 2/3] Update project to .NET 9 and latest package versions Co-authored-by: snow-jallen <42281341+snow-jallen@users.noreply.github.com> --- SanpetePantry/Dockerfile | 4 ++-- SanpetePantry/SanpetePantry.csproj | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/SanpetePantry/Dockerfile b/SanpetePantry/Dockerfile index 9d1b02f..2bb2093 100644 --- a/SanpetePantry/Dockerfile +++ b/SanpetePantry/Dockerfile @@ -1,12 +1,12 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base USER app WORKDIR /app EXPOSE 8080 EXPOSE 8081 -FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY ["SanpetePantry/SanpetePantry.csproj", "SanpetePantry/"] diff --git a/SanpetePantry/SanpetePantry.csproj b/SanpetePantry/SanpetePantry.csproj index 3c3680c..463388a 100644 --- a/SanpetePantry/SanpetePantry.csproj +++ b/SanpetePantry/SanpetePantry.csproj @@ -1,6 +1,6 @@ - net8.0 + net9.0 enable enable aspnet-SanpetePantry-87C9FC2C-C066-498C-989B-0BC4F0093602 @@ -20,12 +20,12 @@ - - - - - - - + + + + + + + \ No newline at end of file From 11163e7d9a5ff0a8613658da334eea9915f4d7df Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 25 Aug 2025 22:07:58 +0000 Subject: [PATCH 3/3] Fix duplicate using directive warning in Routes.razor Co-authored-by: snow-jallen <42281341+snow-jallen@users.noreply.github.com> --- SanpetePantry/Routes.razor | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/SanpetePantry/Routes.razor b/SanpetePantry/Routes.razor index 1a99ad8..3434cfe 100644 --- a/SanpetePantry/Routes.razor +++ b/SanpetePantry/Routes.razor @@ -1,6 +1,4 @@ -@using Shared - - +