Skip to content

Commit ee95533

Browse files
committed
Update Custom Runtime blueprint to target .NET 9
1 parent 6fa29dc commit ee95533

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

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: 3 additions & 3 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,8 +27,8 @@
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>
3434
<PackageReference Include="Amazon.Lambda.Core" Version="2.4.0" />

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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" />

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: 3 additions & 3 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,8 +23,8 @@
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>
3030
<PackageReference Include="Amazon.Lambda.RuntimeSupport" Version="1.11.0" />

Blueprints/BlueprintDefinitions/vs2022/CustomRuntimeFunction/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.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">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<IsTestProject>true</IsTestProject>

0 commit comments

Comments
 (0)