Skip to content

Commit 122d9fc

Browse files
Merge pull request #10 from Suriya-Balamurugan/master
Revert the AWS Lambda changes for .NET 8.0 in the conversion examples
2 parents d95b3a0 + 6e40a84 commit 122d9fc

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

AWS-Lambda/MyLamdaProject/MyLamdaProject/MyLamdaProject.csproj

Lines changed: 4 additions & 3 deletions
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>net6.0</TargetFramework>
44
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
55
<AWSProjectType>Lambda</AWSProjectType>
66
</PropertyGroup>
@@ -27,7 +27,8 @@
2727
<ItemGroup>
2828
<PackageReference Include="Amazon.Lambda.Core" Version="1.1.0" />
2929
<PackageReference Include="Amazon.Lambda.Serialization.Json" Version="1.7.0" />
30-
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="1.68.3" />
31-
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="18.2.0.48" />
30+
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="7.3.0" />
31+
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.6" />
32+
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="*" />
3233
</ItemGroup>
3334
</Project>

AWS-Lambda/MyLamdaProject/MyLamdaProject/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Mock Lambda Test Tool": {
44
"commandName": "Executable",
55
"commandLineArgs": "--port 5050",
6-
"workingDirectory": ".\\bin\\$(Configuration)\\net8.0",
6+
"workingDirectory": ".\\bin\\$(Configuration)\\net6.0",
77
"executablePath": "%USERPROFILE%\\.dotnet\\tools\\dotnet-lambda-test-tool-8.0.exe"
88
}
99
}

AWS-Lambda/MyLamdaProject/MyLamdaProject/aws-lambda-tools-defaults.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"profile" : "AWSLAMBDA",
1010
"region" : "us-east-2",
1111
"configuration" : "Release",
12-
"framework" : "net8.0",
13-
"function-runtime" : "dotnet8",
12+
"framework" : "net6.0",
13+
"function-runtime" : "dotnet6",
1414
"function-memory-size" : 256,
1515
"function-timeout" : 30,
1616
"function-handler" : "MyLamdaProject::MyLamdaProject.Function::FunctionHandler",

0 commit comments

Comments
 (0)