Skip to content

Commit 0948835

Browse files
chore: update packages
1 parent 1865c51 commit 0948835

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install .NET Core
3737
uses: actions/setup-dotnet@v3
3838
with:
39-
dotnet-version: 8.x.x
39+
dotnet-version: 9.x.x
4040

4141
# Execute the build
4242
- name: Execute Release Build
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install .NET Core
5959
uses: actions/setup-dotnet@v3
6060
with:
61-
dotnet-version: 8.x.x
61+
dotnet-version: 9.x.x
6262

6363
# Execute the tests
6464
- name: Execute Tests
@@ -120,7 +120,7 @@ jobs:
120120
- name: Install .NET Core
121121
uses: actions/setup-dotnet@v3
122122
with:
123-
dotnet-version: 8.x.x
123+
dotnet-version: 9.x.x
124124

125125
# Execute the build
126126
- name: Execute Build

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
22
USER $APP_UID
33
WORKDIR /app
44

5-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
5+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
66
ARG BUILD_CONFIGURATION=Release
77
ARG TAG_VERSION
88
WORKDIR /src

src/SiteMonitor/SiteMonitor.csproj

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
77
<ApplicationManifest>app.manifest</ApplicationManifest>
@@ -11,6 +11,7 @@
1111
<PackageIcon>Assets\icon.png</PackageIcon>
1212
<RepositoryUrl>https://github.com/nullinside-development-group/nullinside-site-monitor</RepositoryUrl>
1313
<ApplicationIcon>Assets\logo.ico</ApplicationIcon>
14+
<LangVersion>default</LangVersion>
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
1617
<DocumentationFile>bin\Debug\SiteMonitor.xml</DocumentationFile>
@@ -25,13 +26,13 @@
2526
</ItemGroup>
2627

2728
<ItemGroup>
28-
<PackageReference Include="Avalonia" Version="11.2.1" />
29-
<PackageReference Include="Avalonia.Desktop" Version="11.2.1" />
30-
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1" />
31-
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.1" />
29+
<PackageReference Include="Avalonia" Version="11.3.0" />
30+
<PackageReference Include="Avalonia.Desktop" Version="11.3.0" />
31+
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.0" />
32+
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.0" />
3233
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
33-
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.1" />
34-
<PackageReference Include="Avalonia.ReactiveUI" Version="11.2.1" />
34+
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.0" />
35+
<PackageReference Include="Avalonia.ReactiveUI" Version="11.3.0" />
3536
</ItemGroup>
3637

3738
<ItemGroup>

0 commit comments

Comments
 (0)