Skip to content

Commit 2d54437

Browse files
Gérald Barréclaude
andcommitted
chore: update to .NET 10.0
Update TargetFramework to net10.0 and Dockerfile base images to .NET 10.0 to match the SDK version update. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent cbb8faf commit 2d54437

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

AzureCliCredentialProxy.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<JsonSerializerIsReflectionEnabledByDefault>false</JsonSerializerIsReflectionEnabledByDefault>

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://github.com/Azure/azure-cli/issues/19591
22
# https://iceburn.medium.com/azure-cli-docker-containers-7059750be1f2
3-
FROM mcr.microsoft.com/dotnet/runtime-deps:9.0-alpine AS base
3+
FROM mcr.microsoft.com/dotnet/runtime-deps:10.0-alpine AS base
44
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \
55
AZ_INSTALLER=DOCKER
66
RUN apk add --no-cache py3-pip && \
@@ -13,7 +13,7 @@ ENV ASPNETCORE_URLS=http://+:8080
1313
ENV AZURE_CONFIG_DIR=/app/.azure
1414

1515

16-
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS publish
16+
FROM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS publish
1717
WORKDIR /src
1818
COPY . .
1919

0 commit comments

Comments
 (0)