File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
src/[ApplicationNameUpperCamelCase] Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 36
36
- name : Install .NET Core
37
37
uses : actions/setup-dotnet@v3
38
38
with :
39
- dotnet-version : 8 .x.x
39
+ dotnet-version : 9 .x.x
40
40
41
41
# Execute the build
42
42
- name : Execute Release Build
58
58
- name : Install .NET Core
59
59
uses : actions/setup-dotnet@v3
60
60
with :
61
- dotnet-version : 8 .x.x
61
+ dotnet-version : 9 .x.x
62
62
63
63
# Execute the tests
64
64
- name : Execute Tests
@@ -120,7 +120,7 @@ jobs:
120
120
- name : Install .NET Core
121
121
uses : actions/setup-dotnet@v3
122
122
with :
123
- dotnet-version : 8 .x.x
123
+ dotnet-version : 9 .x.x
124
124
125
125
# Execute the build
126
126
- name : Execute Build
Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/aspnet:8 .0 AS base
1
+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0 AS base
2
2
USER $APP_UID
3
3
WORKDIR /app
4
4
5
- FROM mcr.microsoft.com/dotnet/sdk:8 .0 AS build
5
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
6
6
ARG BUILD_CONFIGURATION=Release
7
7
ARG TAG_VERSION
8
8
WORKDIR /src
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >WinExe</OutputType >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<BuiltInComInteropSupport >true</BuiltInComInteropSupport >
7
7
<ApplicationManifest >app.manifest</ApplicationManifest >
11
11
<PackageIcon >Assets\icon.png</PackageIcon >
12
12
<RepositoryUrl >https://github.com/nullinside-development-group/nullinside-site-monitor</RepositoryUrl >
13
13
<ApplicationIcon >Assets\logo.ico</ApplicationIcon >
14
+ <LangVersion >default</LangVersion >
14
15
</PropertyGroup >
15
16
<PropertyGroup Condition =" '$(Configuration)' == 'Debug' " >
16
17
<DocumentationFile >bin\Debug\[ApplicationNameUpperCamelCase].xml</DocumentationFile >
You can’t perform that action at this time.
0 commit comments