Skip to content

Commit 2c65c0d

Browse files
authored
Update Lambda Blueprints (#1871)
* Update dependencies for blueprints. * Update Custom Runtime blueprint to target .NET 9 * Version bump blueprint package
1 parent 3f69e5f commit 2c65c0d

File tree

129 files changed

+514
-404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+514
-404
lines changed

Blueprints/BlueprintDefinitions/vs2022/AnnotationsFramework/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
<PublishReadyToRun>true</PublishReadyToRun>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
16-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
17-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
18-
<PackageReference Include="Amazon.Lambda.Annotations" Version="1.3.0" />
15+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
16+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
17+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
18+
<PackageReference Include="Amazon.Lambda.Annotations" Version="1.6.0" />
1919
</ItemGroup>
2020
<!--
2121
The FrameworkReference is used to reduce the deployment bundle size by not having to include

Blueprints/BlueprintDefinitions/vs2022/AnnotationsFramework/template/src/BlueprintBaseName.1/serverless.template

Lines changed: 36 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
{
22
"AWSTemplateFormatVersion": "2010-09-09",
33
"Transform": "AWS::Serverless-2016-10-31",
4-
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.2.0.0).",
4+
"Description": "An AWS Serverless Application. This template is partially managed by Amazon.Lambda.Annotations (v1.6.0.0).",
55
"Resources": {
66
"BlueprintBaseName1FunctionsDefaultGenerated": {
77
"Type": "AWS::Serverless::Function",
88
"Metadata": {
99
"Tool": "Amazon.Lambda.Annotations",
1010
"SyncedEvents": [
1111
"RootGet"
12-
]
12+
],
13+
"SyncedEventProperties": {
14+
"RootGet": [
15+
"Path",
16+
"Method"
17+
]
18+
}
1319
},
1420
"Properties": {
1521
"Runtime": "dotnet8",
@@ -38,7 +44,13 @@
3844
"Tool": "Amazon.Lambda.Annotations",
3945
"SyncedEvents": [
4046
"RootGet"
41-
]
47+
],
48+
"SyncedEventProperties": {
49+
"RootGet": [
50+
"Path",
51+
"Method"
52+
]
53+
}
4254
},
4355
"Properties": {
4456
"Runtime": "dotnet8",
@@ -67,7 +79,13 @@
6779
"Tool": "Amazon.Lambda.Annotations",
6880
"SyncedEvents": [
6981
"RootGet"
70-
]
82+
],
83+
"SyncedEventProperties": {
84+
"RootGet": [
85+
"Path",
86+
"Method"
87+
]
88+
}
7189
},
7290
"Properties": {
7391
"Runtime": "dotnet8",
@@ -96,7 +114,13 @@
96114
"Tool": "Amazon.Lambda.Annotations",
97115
"SyncedEvents": [
98116
"RootGet"
99-
]
117+
],
118+
"SyncedEventProperties": {
119+
"RootGet": [
120+
"Path",
121+
"Method"
122+
]
123+
}
100124
},
101125
"Properties": {
102126
"Runtime": "dotnet8",
@@ -125,7 +149,13 @@
125149
"Tool": "Amazon.Lambda.Annotations",
126150
"SyncedEvents": [
127151
"RootGet"
128-
]
152+
],
153+
"SyncedEventProperties": {
154+
"RootGet": [
155+
"Path",
156+
"Method"
157+
]
158+
}
129159
},
130160
"Properties": {
131161
"Runtime": "dotnet8",

Blueprints/BlueprintDefinitions/vs2022/AnnotationsFramework/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
<IsTestProject>true</IsTestProject>
77
</PropertyGroup>
88
<ItemGroup>
9-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
9+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
1010
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
11-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
13-
<PackageReference Include="xunit" Version="2.4.2" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
15-
<PackageReference Include="Moq" Version="4.18.2" />
11+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
13+
<PackageReference Include="xunit" Version="2.9.2" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
15+
<PackageReference Include="Moq" Version="4.20.72" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.csproj" />

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI-FSharp/template/src/BlueprintBaseName.1/BlueprintBaseName.1.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<None Include="serverless.template" />
1919
</ItemGroup>
2020
<ItemGroup>
21-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.0" />
21+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.1" />
2222
</ItemGroup>
2323
</Project>

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI-FSharp/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.fsproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
</Content>
1515
</ItemGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
17+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
1818
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
19-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
20-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
19+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
20+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
2121
<PackageReference Include="xunit" Version="2.3.1" />
22-
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
22+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
2323
</ItemGroup>
2424
<ItemGroup>
2525
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.fsproj" />

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI-Image-FSharp/template/src/BlueprintBaseName.1/BlueprintBaseName.1.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<None Include="serverless.template" />
1919
</ItemGroup>
2020
<ItemGroup>
21-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.0" />
21+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.1" />
2222
</ItemGroup>
2323
</Project>

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI-Image-FSharp/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.fsproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
</Content>
1515
</ItemGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
17+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
1818
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
19-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
20-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
21-
<PackageReference Include="xunit" Version="2.4.2" />
22-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
19+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
20+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
21+
<PackageReference Include="xunit" Version="2.9.2" />
22+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
2323
</ItemGroup>
2424
<ItemGroup>
2525
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.fsproj" />

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI-Image/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
<PublishReadyToRun>true</PublishReadyToRun>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.0" />
15+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.1" />
1616
</ItemGroup>
1717
</Project>

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI-Image/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
</Content>
1818
</ItemGroup>
1919
<ItemGroup>
20-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
20+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
2121
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
22-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
22+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
2323
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.1" />
24-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
25-
<PackageReference Include="xunit" Version="2.4.2" />
26-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
24+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
25+
<PackageReference Include="xunit" Version="2.9.2" />
26+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
2727
</ItemGroup>
2828
<ItemGroup>
2929
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.csproj" />

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI.MinimalAPI/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<PublishReadyToRun>true</PublishReadyToRun>
1212
</PropertyGroup>
1313
<ItemGroup>
14-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer.Hosting" Version="1.7.0" />
14+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer.Hosting" Version="1.7.1" />
1515
</ItemGroup>
1616
</Project>

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
<PublishReadyToRun>true</PublishReadyToRun>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.0" />
15+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.1" />
1616
</ItemGroup>
1717
</Project>

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebAPI/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
</Content>
1818
</ItemGroup>
1919
<ItemGroup>
20-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
20+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
2121
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
22-
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
22+
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.1" />
2323
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.0.1" />
24-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
25-
<PackageReference Include="xunit" Version="2.4.2" />
26-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
24+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
25+
<PackageReference Include="xunit" Version="2.9.2" />
26+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
2727
</ItemGroup>
2828
<ItemGroup>
2929
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.csproj" />

Blueprints/BlueprintDefinitions/vs2022/AspNetCoreWebApp/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PublishReadyToRun>true</PublishReadyToRun>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.0" />
15+
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.0.1" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<Folder Include="wwwroot\images\" />

Blueprints/BlueprintDefinitions/vs2022/ChatBotTutorial/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<PublishReadyToRun>true</PublishReadyToRun>
1212
</PropertyGroup>
1313
<ItemGroup>
14-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
14+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
1515
<PackageReference Include="Amazon.Lambda.LexEvents" Version="3.1.0" />
16-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
16+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
1717
</ItemGroup>
1818
</Project>

Blueprints/BlueprintDefinitions/vs2022/ChatBotTutorial/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
</None>
1515
</ItemGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
17+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
1818
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
19-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
20-
<PackageReference Include="xunit" Version="2.4.2" />
21-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
19+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
20+
<PackageReference Include="xunit" Version="2.9.2" />
21+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
2222
</ItemGroup>
2323
<ItemGroup>
2424
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.csproj" />

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction-FSharp/blueprint-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"display-name": "Custom Runtime Function",
33
"system-name": "CustomRuntimeFunction",
4-
"description": "Use Lambda Custom Runtime feature to build Lambda functions using .NET 8.",
4+
"description": "Use Lambda Custom Runtime feature to build Lambda functions using .NET 9.",
55
"sort-order": 125,
66
"hidden-tags": [
77
"F#",

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction-FSharp/template/.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 Custom Runtime Function (.NET 8)",
8+
"name": "Lambda Custom Runtime Function (.NET 9)",
99
"identity": "AWS.Lambda.Function.CustomRuntimeFunction.FSharp",
1010
"groupIdentity": "AWS.Lambda.Function.CustomRuntimFunction",
1111
"shortName": "lambda.CustomRuntimeFunction",

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction-FSharp/template/src/BlueprintBaseName.1/BlueprintBaseName.1.fsproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AWSProjectType>Lambda</AWSProjectType>
66
<AssemblyName>bootstrap</AssemblyName>
77
<!-- This property makes the build directory similar to a publish directory and helps the AWS .NET Lambda Mock Test Tool find project dependencies. -->
@@ -27,13 +27,13 @@
2727
package need to be included to support internationalization.
2828
-->
2929
<ItemGroup>
30-
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="68.2.0.9" />
31-
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.9" />
30+
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" />
31+
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
3232
</ItemGroup>
3333
<ItemGroup>
34-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
35-
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.10.0" />
36-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
34+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
35+
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.11.0" />
36+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
3737
</ItemGroup>
3838
<ItemGroup>
3939
<Content Include="aws-lambda-tools-defaults.json" />

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction-FSharp/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.fsproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22
<PropertyGroup>
33
<OutputType>Library</OutputType>
44
<IsPackable>false</IsPackable>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<Compile Include="FunctionTest.fs" />
9+
<Compile Include="Program.fs" />
910
</ItemGroup>
1011
<ItemGroup>
11-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
12+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
1213
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
14-
<PackageReference Include="xunit" Version="2.4.2" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
15+
<PackageReference Include="xunit" Version="2.9.2" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
1617
</ItemGroup>
1718
<ItemGroup>
1819
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.fsproj" />

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction-FSharp/template/test/BlueprintBaseName.1.Tests/FunctionTest.fs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,3 @@ module FunctionTest =
1515
let upperCase = Function.functionHandler "hello world" context
1616

1717
Assert.Equal("HELLO WORLD", upperCase)
18-
19-
[<EntryPoint>]
20-
let main _ = 0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module Program = let [<EntryPoint>] main _ = 0

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction/blueprint-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"display-name": "Custom Runtime Function",
33
"system-name": "CustomRuntimeFunction",
4-
"description": "Use Lambda Custom Runtime feature to build Lambda functions using .NET 8.",
4+
"description": "Use Lambda Custom Runtime feature to build Lambda functions using .NET 9.",
55
"sort-order": 125,
66
"hidden-tags": [
77
"C#",

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction/template/.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 Custom Runtime Function (.NET 8)",
8+
"name": "Lambda Custom Runtime Function (.NET 9)",
99
"identity": "AWS.Lambda.Function.CustomRuntimeFunction.CSharp",
1010
"groupIdentity": "AWS.Lambda.Function.CustomRuntimFunction",
1111
"shortName": "lambda.CustomRuntimeFunction",

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AWSProjectType>Lambda</AWSProjectType>
@@ -23,12 +23,12 @@
2323
package need to be included to support internationalization.
2424
-->
2525
<ItemGroup>
26-
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="68.2.0.9" />
27-
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.9" />
26+
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" />
27+
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="72.1.0.3" />
2828
</ItemGroup>
2929
<ItemGroup>
30-
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.10.0" />
31-
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
32-
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.1" />
30+
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.11.0" />
31+
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />
32+
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
3333
</ItemGroup>
3434
</Project>

0 commit comments

Comments
 (0)