File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed
Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1212 - name : Setup .NET Core
1313 uses : actions/setup-dotnet@v4
1414 with :
15- dotnet-version : 9 .0.x
15+ dotnet-version : 10 .0.x
1616 - name : Install .NET Aspire workload
1717 run : dotnet workload install aspire
1818 - name : Restore
Original file line number Diff line number Diff line change 1919 - name : Checkout code
2020 uses : actions/checkout@v4
2121 with :
22- lfs : true # jeśli używasz Git LFS
22+ lfs : true
2323
24- - name : Setup .NET 9 SDK
24+ - name : Setup .NET 10 SDK
2525 uses : actions/setup-dotnet@v3
2626 with :
27- dotnet-version : ' 9 .0.x'
27+ dotnet-version : ' 10 .0.x'
Original file line number Diff line number Diff line change 1717 - name : Setup .NET Core
1818 uses : actions/setup-dotnet@v4
1919 with :
20- dotnet-version : 9 .0.x
20+ dotnet-version : 10 .0.x
2121 - name : Create mongoDB Docker container
2222 run : sudo docker run -d -p 27017:27017 mongo:latest
2323 - name : Install .NET Aspire workload
Original file line number Diff line number Diff line change 11# Build stage
2- FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build-env
2+ FROM mcr.microsoft.com/dotnet/sdk:10 .0 AS build-env
33LABEL stage=build-env
44WORKDIR /app
55
@@ -24,7 +24,7 @@ RUN for plugin in /app/Plugins/*; do \
2424RUN dotnet publish /app/Web/Grand.Web/Grand.Web.csproj -c Release -o ./build/release -p:SourceRevisionId=$GIT_COMMIT -p:GitBranch=$GIT_BRANCH
2525
2626# Runtime stage
27- FROM mcr.microsoft.com/dotnet/aspnet:9 .0 AS runtime
27+ FROM mcr.microsoft.com/dotnet/aspnet:10 .0 AS runtime
2828
2929EXPOSE 8080
3030WORKDIR /app
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ variables:
1313
1414steps :
1515- task : UseDotNet@2
16- displayName : ' Install .NET Core SDK 9 '
16+ displayName : ' Install .NET Core SDK 10 '
1717 inputs :
18- version : ' 9 .0.x'
18+ version : ' 10 .0.x'
1919
2020- task : Bash@3
2121 displayName : Install .NET Aspire workload
You can’t perform that action at this time.
0 commit comments