Skip to content

Commit e60c889

Browse files
chore: update .NET SDK and runtime versions to 8.0.18 across all projects (#2654)
1 parent 0b5e935 commit e60c889

File tree

21 files changed

+23
-23
lines changed

21 files changed

+23
-23
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
variables:
2-
DotNet.Sdk.Version: '8.0.201'
2+
DotNet.Sdk.Version: '8.0.412'
33
DotNet.Configuration: 'release'

src/Promitor.Agents.Core/Promitor.Agents.Core.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<RuntimeFrameworkVersion>8.0.2</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/Promitor.Agents.ResourceDiscovery/Dockerfile.linux

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:8.0.408-cbl-mariner2.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0-azurelinux3.0 AS build
22
WORKDIR /src
33
ARG VERSION="UNSET-VERSION"
44
COPY Promitor.Agents.ResourceDiscovery/* Promitor.Agents.ResourceDiscovery/
@@ -14,7 +14,7 @@ COPY Promitor.Integrations.Sinks.Core/* Promitor.Integrations.Sinks.Core/
1414
COPY Promitor.Integrations.Sinks.Prometheus/* Promitor.Integrations.Sinks.Prometheus/
1515
RUN dotnet publish Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj --configuration release --output /app /p:Version=$VERSION
1616

17-
FROM mcr.microsoft.com/dotnet/aspnet:8.0.15-cbl-mariner2.0-distroless AS runtime-base
17+
FROM mcr.microsoft.com/dotnet/aspnet:8.0.18-cbl-mariner2.0-distroless AS runtime-base
1818

1919
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 AS installer
2020

src/Promitor.Agents.ResourceDiscovery/Promitor.Agents.ResourceDiscovery.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
6-
<RuntimeFrameworkVersion>8.0.2</RuntimeFrameworkVersion>
6+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<DocumentationFile>Docs\Open-Api.xml</DocumentationFile>
99
<UserSecretsId>159d036b-3697-40d4-bdc4-7d9736521375</UserSecretsId>

src/Promitor.Agents.Scraper/Dockerfile.linux

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:8.0.408-cbl-mariner2.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0-azurelinux3.0 AS build
22
WORKDIR /src
33
ARG VERSION="UNSET-VERSION"
44
COPY Promitor.Core/* Promitor.Core/
@@ -18,7 +18,7 @@ COPY Promitor.Integrations.Sinks.Statsd/* Promitor.Integrations.Sinks.Statsd/
1818
COPY Promitor.Agents.Scraper/* Promitor.Agents.Scraper/
1919
RUN dotnet publish Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj --configuration release --output app /p:Version=$VERSION
2020

21-
FROM mcr.microsoft.com/dotnet/aspnet:8.0.15-cbl-mariner2.0-distroless AS runtime-base
21+
FROM mcr.microsoft.com/dotnet/aspnet:8.0.18-cbl-mariner2.0-distroless AS runtime-base
2222

2323
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 AS installer
2424

src/Promitor.Agents.Scraper/Promitor.Agents.Scraper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
6-
<RuntimeFrameworkVersion>8.0.2</RuntimeFrameworkVersion>
6+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
77
<!--<DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>-->
88
</PropertyGroup>
99

src/Promitor.Core.Contracts/Promitor.Core.Contracts.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<RuntimeFrameworkVersion>8.0.2</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/Promitor.Core.Scraping/Promitor.Core.Scraping.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<RuntimeFrameworkVersion>8.0.2</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
66
<LangVersion>8</LangVersion>
77
</PropertyGroup>
88

src/Promitor.Core.Telemetry/Promitor.Core.Telemetry.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<RuntimeFrameworkVersion>7.0.4</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/Promitor.Core/Promitor.Core.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<RuntimeFrameworkVersion>8.0.2</RuntimeFrameworkVersion>
5+
<RuntimeFrameworkVersion>8.0.18</RuntimeFrameworkVersion>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

0 commit comments

Comments
 (0)