Skip to content

Commit 94bb0e9

Browse files
[Infra] Update to .NET 10 RC1
Update to release candidate 1 of .NET 10.
1 parent 6bec598 commit 94bb0e9

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
possible and only deviate (use a specific version) when a package has a
1010
more specific patch which must be reference directly.
1111
-->
12-
<LatestRuntimeOutOfBandVer>10.0.0-preview.7.25380.108</LatestRuntimeOutOfBandVer>
12+
<LatestRuntimeOutOfBandVer>10.0.0-rc.1.25451.107</LatestRuntimeOutOfBandVer>
1313

1414
<!-- Mitigate https://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-43485. -->
1515
<SystemTextEncodingsWebOutOfBandMinimumCoreAppVer>8.0.0</SystemTextEncodingsWebOutOfBandMinimumCoreAppVer>
@@ -126,7 +126,7 @@
126126
</ItemGroup>
127127

128128
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
129-
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="10.0.0-preview.7.25380.108" />
129+
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="10.0.0-rc.1.25451.107" />
130130
</ItemGroup>
131131

132132
</Project>

examples/MicroserviceExample/WebApi/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG SDK_VERSION=9.0
22
FROM mcr.microsoft.com/dotnet/sdk:8.0.413@sha256:7fd287cec03e027e39be13fb06ca1347f1338c7a6ab4ad305d94d91852693f70 AS dotnet-sdk-8.0
33
FROM mcr.microsoft.com/dotnet/sdk:9.0.304@sha256:ae000be75dac94fc40e00f0eee903289e985995cc06dac3937469254ce5b60b6 AS dotnet-sdk-9.0
4-
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-preview.7@sha256:1d5e6f2c1ece7d5826bafc8a7f2d54db2c6478a0f2bd1c995d05a37c0be4783e AS dotnet-sdk-10.0
4+
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.1@sha256:32cd7d97e0814307e594f9f3e33aa039ddcf125191fd7add32c7370d2a6118b9 AS dotnet-sdk-10.0
55

66
FROM dotnet-sdk-${SDK_VERSION} AS build
77
ARG PUBLISH_CONFIGURATION=Release
@@ -12,7 +12,7 @@ RUN dotnet publish ./examples/MicroserviceExample/WebApi -c "${PUBLISH_CONFIGURA
1212

1313
FROM mcr.microsoft.com/dotnet/aspnet:8.0.19@sha256:6d40ae71165cb8a4427477ae3b447b05c080330cabae08b0dae672552bcd34d8 AS dotnet-aspnet-8.0
1414
FROM mcr.microsoft.com/dotnet/aspnet:9.0.8@sha256:515c08e27cf8d933af442f0e1b6c92cc728acb71f113ca529f56c79cb597adb5 AS dotnet-aspnet-9.0
15-
FROM mcr.microsoft.com/dotnet/aspnet:10.0.0-preview.7@sha256:ed557d471a2b702b72fd1fd4835040bbbdfbd2532ae78cfc90546773d88a91d7 AS dotnet-aspnet-10.0
15+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.0-rc.1@sha256:68088c4403831e452c826a751484ac5d1aaa495eddccea5068b8bf5b6dcd515c AS dotnet-aspnet-10.0
1616

1717
FROM dotnet-aspnet-${SDK_VERSION} AS runtime
1818
WORKDIR /app

examples/MicroserviceExample/WorkerService/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG SDK_VERSION=10.0
22

33
FROM mcr.microsoft.com/dotnet/sdk:8.0.413@sha256:45e41fe52eb60f42bd75c83b7e8bfff0523e031e042b4c1fc7ddb9c348898c64 AS dotnet-sdk-8.0
44
FROM mcr.microsoft.com/dotnet/sdk:9.0.304@sha256:840f3b62b9742dde4461a3c31e38ffd34d41d7d33afd39c378cfcfd5dcb82bd5 AS dotnet-sdk-9.0
5-
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-preview.7@sha256:3d69f7e851747ae8bd22509d7f54f036006edee67f73767213670fe570117d45 AS dotnet-sdk-10.0
5+
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.1@sha256:32cd7d97e0814307e594f9f3e33aa039ddcf125191fd7add32c7370d2a6118b9 AS dotnet-sdk-10.0
66

77
FROM dotnet-sdk-${SDK_VERSION} AS build
88
ARG PUBLISH_CONFIGURATION=Release
@@ -13,7 +13,7 @@ RUN dotnet publish ./examples/MicroserviceExample/WorkerService -c "${PUBLISH_CO
1313

1414
FROM mcr.microsoft.com/dotnet/aspnet:8.0.19@sha256:6d8901fae2d8f44c0e73962046a67fbdaf017bc8a6833c74ae87e9fbd0810b73 AS dotnet-aspnet-8.0
1515
FROM mcr.microsoft.com/dotnet/aspnet:9.0.8@sha256:2b70ef1451cb01c2118969ad15fd0ae40fdbac158f09699fefae0dc32c4ca352 AS dotnet-aspnet-9.0
16-
FROM mcr.microsoft.com/dotnet/aspnet:10.0.0-preview.7@sha256:53bab3967837a7fda12d53aa3129a14395b81af4fb2a7cbcf510509150c237a6 AS dotnet-aspnet-10.0
16+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.0-rc.1@sha256:68088c4403831e452c826a751484ac5d1aaa495eddccea5068b8bf5b6dcd515c AS dotnet-aspnet-10.0
1717

1818
FROM dotnet-aspnet-${SDK_VERSION} AS runtime
1919
WORKDIR /app

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
33
"rollForward": "latestFeature",
4-
"version": "10.0.100-preview.7.25380.108"
4+
"version": "10.0.100-rc.1.25451.107"
55
}
66
}

test/OpenTelemetry.Exporter.OpenTelemetryProtocol.Tests/IntegrationTest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG BUILD_SDK_VERSION=10.0
66
ARG TEST_SDK_VERSION=10.0
77
FROM mcr.microsoft.com/dotnet/sdk:8.0.413@sha256:45e41fe52eb60f42bd75c83b7e8bfff0523e031e042b4c1fc7ddb9c348898c64 AS dotnet-sdk-8.0
88
FROM mcr.microsoft.com/dotnet/sdk:9.0.304@sha256:840f3b62b9742dde4461a3c31e38ffd34d41d7d33afd39c378cfcfd5dcb82bd5 AS dotnet-sdk-9.0
9-
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-preview.7@sha256:3d69f7e851747ae8bd22509d7f54f036006edee67f73767213670fe570117d45 AS dotnet-sdk-10.0
9+
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.1@sha256:32cd7d97e0814307e594f9f3e33aa039ddcf125191fd7add32c7370d2a6118b9 AS dotnet-sdk-10.0
1010

1111
FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
1212
ARG PUBLISH_CONFIGURATION=Release

test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN git clone --branch level-1 https://github.com/w3c/trace-context.git
1313

1414
FROM mcr.microsoft.com/dotnet/sdk:8.0.413@sha256:45e41fe52eb60f42bd75c83b7e8bfff0523e031e042b4c1fc7ddb9c348898c64 AS dotnet-sdk-8.0
1515
FROM mcr.microsoft.com/dotnet/sdk:9.0.304@sha256:840f3b62b9742dde4461a3c31e38ffd34d41d7d33afd39c378cfcfd5dcb82bd5 AS dotnet-sdk-9.0
16-
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-preview.7@sha256:3d69f7e851747ae8bd22509d7f54f036006edee67f73767213670fe570117d45 AS dotnet-sdk-10.0
16+
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-rc.1@sha256:32cd7d97e0814307e594f9f3e33aa039ddcf125191fd7add32c7370d2a6118b9 AS dotnet-sdk-10.0
1717

1818
FROM dotnet-sdk-${BUILD_SDK_VERSION} AS build
1919
ARG PUBLISH_CONFIGURATION=Release

0 commit comments

Comments
 (0)