Skip to content

Commit e5db908

Browse files
committed
Updating to .net 10
1 parent 96858e9 commit e5db908

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
- name: Setup .NET Core
183183
uses: actions/setup-dotnet@v3
184184
with:
185-
dotnet-version: 9.0.x
185+
dotnet-version: 10.0.x
186186
- name: Install dependencies
187187
run: dotnet restore eform-angular-frontend/eFormAPI/eFormAPI.sln
188188
- name: Build
@@ -355,7 +355,7 @@ jobs:
355355
- name: Setup .NET Core
356356
uses: actions/setup-dotnet@v3
357357
with:
358-
dotnet-version: 9.0.x
358+
dotnet-version: 10.0.x
359359
- name: Build
360360
run: dotnet build eform-angular-items-planning-plugin/eFormAPI/Plugins/ItemsPlanning.Pn/ItemsPlanning.Pn.sln
361361
- name: Unit Tests
@@ -530,7 +530,7 @@ jobs:
530530
- name: Setup .NET Core
531531
uses: actions/setup-dotnet@v3
532532
with:
533-
dotnet-version: 9.0.x
533+
dotnet-version: 10.0.x
534534
- name: Sleep 15 seconds
535535
run: sleep 15
536536
- name: Build
@@ -695,7 +695,7 @@ jobs:
695695
- name: Setup .NET Core
696696
uses: actions/setup-dotnet@v3
697697
with:
698-
dotnet-version: 9.0.x
698+
dotnet-version: 10.0.x
699699
- name: Sleep 15 seconds
700700
run: sleep 15
701701
- name: Load DB dump
@@ -996,7 +996,7 @@ jobs:
996996
- name: Setup .NET Core
997997
uses: actions/setup-dotnet@v3
998998
with:
999-
dotnet-version: 9.0.x
999+
dotnet-version: 10.0.x
10001000
- name: Build
10011001
run: dotnet build eform-backendconfiguration-plugin/eFormAPI/Plugins/BackendConfiguration.Pn/BackendConfiguration.Pn.sln
10021002
- name: Unit Tests
@@ -1229,7 +1229,7 @@ jobs:
12291229
- name: Setup .NET Core
12301230
uses: actions/setup-dotnet@v3
12311231
with:
1232-
dotnet-version: 9.0.x
1232+
dotnet-version: 10.0.x
12331233
- name: Build
12341234
run: dotnet build eform-angular-timeplanning-plugin/eFormAPI/Plugins/TimePlanning.Pn/TimePlanning.Pn.sln
12351235
- name: Unit Tests
@@ -1247,7 +1247,7 @@ jobs:
12471247
- name: Setup .NET Core
12481248
uses: actions/setup-dotnet@v3
12491249
with:
1250-
dotnet-version: 9.0.x
1250+
dotnet-version: 10.0.x
12511251
- name: Install dependencies
12521252
run: dotnet restore eform-debian-service
12531253
- name: Build
@@ -1307,7 +1307,7 @@ jobs:
13071307
- name: Setup .NET Core
13081308
uses: actions/setup-dotnet@v3
13091309
with:
1310-
dotnet-version: 9.0.x
1310+
dotnet-version: 10.0.x
13111311
- name: Install dependencies
13121312
run: dotnet restore eform-service-timeplanning-plugin
13131313
- name: Build
@@ -1401,7 +1401,7 @@ jobs:
14011401
- name: Setup .NET Core
14021402
uses: actions/setup-dotnet@v3
14031403
with:
1404-
dotnet-version: 9.0.x
1404+
dotnet-version: 10.0.x
14051405
- name: Install dependencies
14061406
run: dotnet restore eform-service-items-planning-plugin
14071407
- name: Build
@@ -1495,7 +1495,7 @@ jobs:
14951495
- name: Setup .NET Core
14961496
uses: actions/setup-dotnet@v3
14971497
with:
1498-
dotnet-version: 9.0.x
1498+
dotnet-version: 10.0.x
14991499
- name: Install dependencies
15001500
run: dotnet restore eform-service-workflow-plugin
15011501
- name: Build
@@ -1613,7 +1613,7 @@ jobs:
16131613
- name: Setup .NET Core
16141614
uses: actions/setup-dotnet@v3
16151615
with:
1616-
dotnet-version: 9.0.x
1616+
dotnet-version: 10.0.x
16171617
- name: Install dependencies
16181618
run: dotnet restore eform-service-backendconfiguration-plugin
16191619
- name: Build

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN yarn install
1111
RUN yarn build
1212
RUN if [ -n "$SENTRY_AUTH_TOKEN" ] && [ "$DISABLE_SENTRY" != "true" ]; then yarn sentrysourcemap; else echo "Sentry sourcemap upload skipped (DISABLE_SENTRY=$DISABLE_SENTRY)"; fi
1313

14-
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build-env
14+
FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build-env
1515
WORKDIR /app
1616
ARG GITVERSION
1717
ARG PLUGINVERSION
@@ -36,7 +36,7 @@ RUN dotnet publish BackendConfiguration.Pn -o BackendConfiguration.Pn/out /p:Ver
3636
RUN dotnet publish GreateBelt.Pn -o GreateBelt.Pn/out /p:Version=$PLUGIN6VERSION --runtime linux-x64 --configuration Release
3737

3838
# Build runtime image
39-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
39+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble
4040
WORKDIR /app
4141
ARG DISABLE_SENTRY
4242
ENV DISABLE_SENTRY=${DISABLE_SENTRY}

Dockerfile-items-planning-service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build-env
22
ARG GITVERSION
33
WORKDIR /app
44
ARG GITVERSION
@@ -14,7 +14,7 @@ RUN ls -lah out
1414
RUN ls -lah out/Plugins
1515

1616
# Build runtime image
17-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
17+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble
1818
WORKDIR /app
1919
COPY --from=build-env /app/out .
2020

Dockerfile-service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build-env
22
ARG GITVERSION
33
WORKDIR /app
44
ARG GITVERSION
@@ -24,7 +24,7 @@ RUN ls -lah out
2424
RUN ls -lah out/Plugins
2525

2626
# Build runtime image
27-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
27+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble
2828
WORKDIR /app
2929
COPY --from=build-env /app/out .
3030

Dockerfile-time-planning-service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build-env
22
ARG GITVERSION
33
WORKDIR /app
44
ARG GITVERSION
@@ -14,7 +14,7 @@ RUN ls -lah out
1414
RUN ls -lah out/Plugins
1515

1616
# Build runtime image
17-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
17+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble
1818
WORKDIR /app
1919
COPY --from=build-env /app/out .
2020

Dockerfile-workflow-service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0-noble AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0-noble AS build-env
22
ARG GITVERSION
33
WORKDIR /app
44
ARG GITVERSION
@@ -14,7 +14,7 @@ RUN ls -lah out
1414
RUN ls -lah out/Plugins
1515

1616
# Build runtime image
17-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
17+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble
1818
WORKDIR /app
1919
COPY --from=build-env /app/out .
2020

0 commit comments

Comments
 (0)