Skip to content

Commit 1f2468a

Browse files
authored
Fix up some template labels that were not updated from .NET 8 to .NET 10 (#2234)
1 parent f99e0b2 commit 1f2468a

File tree

29 files changed

+39
-39
lines changed

29 files changed

+39
-39
lines changed

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image-FSharp/template/src/BlueprintBaseName.1/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Lambda",
77
"Serverless"
88
],
9-
"name": "Lambda ASP.NET Core Web API (.NET 8 Container Image)",
9+
"name": "Lambda ASP.NET Core Web API (.NET 10 Container Image)",
1010
"identity": "AWS.Lambda.Serverless.Image.AspNetCoreWebAPI.FSharp",
1111
"groupIdentity": "AWS.Lambda.Serverless.Image.AspNetCoreWebAPI",
1212
"shortName": "serverless.image.AspNetCoreWebAPI",

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image-FSharp/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ have the .NET project built inside the container. Below is an example of buildin
4646
```dockerfile
4747
FROM public.ecr.aws/lambda/dotnet:10 AS base
4848

49-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
49+
FROM mcr.microsoft.com/dotnet/sdk:10.0 as build
5050
WORKDIR /src
5151
COPY ["BlueprintBaseName.1.csproj", "BlueprintBaseName.1/"]
5252
RUN dotnet restore "BlueprintBaseName.1/BlueprintBaseName.1.csproj"

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image/blueprint-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"display-name": "ASP.NET Core 8 (Container Image)",
2+
"display-name": "ASP.NET Core 10 (Container Image)",
33
"system-name": "AspNetCoreWebAPIImage",
4-
"description": "Serverless ASP.NET Core 8 Web API packaged as a container image.",
4+
"description": "Serverless ASP.NET Core 10 Web API packaged as a container image.",
55
"sort-order": 250,
66
"hidden-tags": [
77
"C#",

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image/template/src/BlueprintBaseName.1/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Lambda",
77
"Serverless"
88
],
9-
"name": "Lambda ASP.NET Core Web API (.NET 8 Container Image)",
9+
"name": "Lambda ASP.NET Core Web API (.NET 10 Container Image)",
1010
"identity": "AWS.Lambda.Serverless.Image.AspNetCoreWebAPI.CSharp",
1111
"groupIdentity": "AWS.Lambda.Serverless.Image.AspNetCoreWebAPI",
1212
"shortName": "serverless.image.AspNetCoreWebAPI",

Blueprints/BlueprintDefinitions/vs2026/AspNetCoreWebAPI-Image/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ have the .NET project built inside the container. Below is an example of buildin
5252

5353
```dockerfile
5454
FROM public.ecr.aws/lambda/dotnet:10
55-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
55+
FROM mcr.microsoft.com/dotnet/sdk:10.0 as build
5656
WORKDIR /src
5757
COPY ["BlueprintBaseName.1.csproj", "BlueprintBaseName.1/"]
5858
RUN dotnet restore "BlueprintBaseName.1/BlueprintBaseName.1.csproj"

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image-FSharp/blueprint-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"display-name": ".NET 8 (Container Image)",
2+
"display-name": ".NET 10 (Container Image)",
33
"system-name": "EmptyImageFunction",
4-
"description": "A .NET 8 Lambda function packaged as a container image.",
4+
"description": "A .NET 10 Lambda function packaged as a container image.",
55
"sort-order": 225,
66
"hidden-tags": [
77
"F#",

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image-FSharp/template/src/BlueprintBaseName.1/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"Lambda",
66
"Function"
77
],
8-
"name": "Lambda Empty Function (.NET 8 Container Image)",
8+
"name": "Lambda Empty Function (.NET 10 Container Image)",
99
"identity": "AWS.Lambda.Function.Image.Empty.FSharp",
1010
"groupIdentity": "AWS.Lambda.Function.Image.Empty",
1111
"shortName": "lambda.image.EmptyFunction",

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image-FSharp/template/src/BlueprintBaseName.1/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ have the .NET project built inside the container. Below is an example of buildin
2424
```dockerfile
2525
FROM public.ecr.aws/lambda/dotnet:10 AS base
2626

27-
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build
27+
FROM mcr.microsoft.com/dotnet/sdk:10.0 as build
2828
WORKDIR /src
2929
COPY ["BlueprintBaseName.1.fsproj", "BlueprintBaseName.1/"]
3030
RUN dotnet restore "BlueprintBaseName.1/BlueprintBaseName.1.fsproj"

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image/blueprint-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"display-name": ".NET 8 (Container Image)",
2+
"display-name": ".NET 10 (Container Image)",
33
"system-name": "EmptyImageFunction",
4-
"description": "A .NET 8 Lambda function packaged as a container image.",
4+
"description": "A .NET 10 Lambda function packaged as a container image.",
55
"sort-order": 225,
66
"hidden-tags": [
77
"C#",

Blueprints/BlueprintDefinitions/vs2026/EmptyFunction-Image/template/src/BlueprintBaseName.1/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"Lambda",
66
"Function"
77
],
8-
"name": "Lambda Empty Function (.NET .8 Container Image)",
8+
"name": "Lambda Empty Function (.NET 10 Container Image)",
99
"identity": "AWS.Lambda.Function.Image.Empty.CSharp",
1010
"groupIdentity": "AWS.Lambda.Function.Image.Empty",
1111
"shortName": "lambda.image.EmptyFunction",

0 commit comments

Comments
 (0)