We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56025a4 commit 9c22f8bCopy full SHA for 9c22f8b
2 files changed
frameworks/CSharp/carter/README.md
@@ -5,7 +5,7 @@ This includes tests for plaintext and json serialization.
5
6
**Language**
7
8
-* C# 7.0
+* C# 14.0
9
10
**Platforms**
11
frameworks/CSharp/carter/carter.dockerfile
@@ -1,9 +1,9 @@
1
-FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
+FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
2
WORKDIR /app
3
COPY Benchmarks .
4
RUN dotnet publish -c Release -o out
-FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
+FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime
ENV ASPNETCORE_URLS http://+:8080
COPY --from=build /app/out ./
0 commit comments