Skip to content

Commit 23953bc

Browse files
committed
Upgrading to .NET 9
1 parent bb91bc2 commit 23953bc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/dotnet-core-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
- name: Setup .NET Core
170170
uses: actions/setup-dotnet@v3
171171
with:
172-
dotnet-version: 9.0.x
172+
dotnet-version: 10.0.x
173173
- name: Build
174174
run: dotnet build eFormAPI/Plugins/ItemsPlanning.Pn/ItemsPlanning.Pn.sln
175175
- name: Unit Tests

.github/workflows/dotnet-core-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
- name: Setup .NET Core
164164
uses: actions/setup-dotnet@v3
165165
with:
166-
dotnet-version: 9.0.x
166+
dotnet-version: 10.0.x
167167
- name: Build
168168
run: dotnet build eFormAPI/Plugins/ItemsPlanning.Pn/ItemsPlanning.Pn.sln
169169
- name: Unit Tests

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY eform-angular-frontend/eform-client ./
55
RUN yarn install
66
RUN npm run build
77

8-
FROM mcr.microsoft.com/dotnet/sdk:9.0-bookworm-slim AS build-env
8+
FROM mcr.microsoft.com/dotnet/sdk:10.0-bookworm-slim AS build-env
99
WORKDIR /app
1010
ARG GITVERSION
1111
ARG PLUGINVERSION
@@ -17,7 +17,7 @@ RUN dotnet publish eFormAPI.Web -o eFormAPI.Web/out /p:Version=$GITVERSION --run
1717
RUN dotnet publish ItemsPlanning.Pn -o ItemsPlanning.Pn/out /p:Version=$PLUGINVERSION --runtime linux-x64 --configuration Release
1818

1919
# Build runtime image
20-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-bookworm-slim
20+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-bookworm-slim
2121
WORKDIR /app
2222
COPY --from=build-env /app/eFormAPI.Web/out .
2323
RUN mkdir -p ./Plugins/ItemsPlanning.Pn

eFormAPI/Plugins/ItemsPlanning.Pn/ItemsPlanning.Pn.Test/ItemsPlanning.Pn.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<IsPublishable>false</IsPublishable>
77
</PropertyGroup>
88

eFormAPI/Plugins/ItemsPlanning.Pn/ItemsPlanning.Pn/ItemsPlanning.Pn.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ServerGarbageCollection>false</ServerGarbageCollection>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)