Skip to content

Commit 564711e

Browse files
Update aws/sagas-lambda-aurora sample target framework to match the CloudFormation template (#7569)
switching from multi target to single target in order to match the CloudFormation template framework value in aws-lambda-tools-defaults.json (since docs engine cannot dynamically inject the target framework when generating different zip files for each targeted framework)
1 parent 360590a commit 564711e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

samples/aws/sagas-lambda-aurora/SQSLambda_2/ClientUI/ClientUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
4+
<TargetFramework>net8.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

samples/aws/sagas-lambda-aurora/SQSLambda_2/DeployDatabase/DeployDatabase.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
4+
<TargetFramework>net8.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

samples/aws/sagas-lambda-aurora/SQSLambda_2/Messages/Messages.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<LangVersion>12.0</LangVersion>

samples/aws/sagas-lambda-aurora/SQSLambda_2/Sales/Sales.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
4+
<TargetFramework>net8.0</TargetFramework>
55
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
66
<AWSProjectType>Lambda</AWSProjectType>
77
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)