Skip to content

Commit 9c7f5e4

Browse files
Merge pull request #88 from Suriya-Balamurugan/master
Revert the AWS Lambda changes for .NET 8.0 in the conversion examples
2 parents 98f7555 + a77fb68 commit 9c7f5e4

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/AWS/AWS_Lambda/Convert-PowerPoint-Presentation-to-Image/Convert-PowerPoint-Presentation-to-Image.csproj

Lines changed: 3 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
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
@@ -21,8 +21,8 @@
2121
<ItemGroup>
2222
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
2323
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
24-
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.8.2.2" />
25-
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.2" />
24+
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="7.3.0" />
25+
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.6" />
2626
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="*" />
2727
</ItemGroup>
2828
</Project>

PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/AWS/AWS_Lambda/Convert-PowerPoint-Presentation-to-Image/Properties/launchSettings.json

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

PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/AWS/AWS_Lambda/Convert-PowerPoint-Presentation-to-Image/aws-lambda-tools-defaults.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"region" : "us-east-1",
1111
"configuration" : "Release",
1212
"function-architecture" : "x86_64",
13-
"function-runtime" : "dotnet8",
13+
"function-runtime" : "dotnet6",
1414
"function-memory-size" : 256,
1515
"function-timeout" : 30,
1616
"function-handler" : "Convert-PowerPoint-Presentation-to-Image::Convert_PowerPoint_Presentation_to_Image.Function::FunctionHandler",
17-
"framework" : "net8.0",
17+
"framework" : "net6.0",
1818
"function-name" : "PPTXtoImageConversion",
1919
"function-description" : "",
2020
"package-type" : "Zip",

PPTX-to-PDF-conversion/Convert-PowerPoint-presentation-to-PDF/AWS/AWS_Lambda/Convert-PowerPoint-Presentation-to-PDF/Convert-PowerPoint-Presentation-to-PDF.csproj

Lines changed: 3 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
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
@@ -21,8 +21,8 @@
2121
<ItemGroup>
2222
<PackageReference Include="Amazon.Lambda.Core" Version="2.1.0" />
2323
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.3.1" />
24-
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.8.2.2" />
25-
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.2" />
24+
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="7.3.0" />
25+
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.6" />
2626
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="*" />
2727
</ItemGroup>
2828
</Project>

PPTX-to-PDF-conversion/Convert-PowerPoint-presentation-to-PDF/AWS/AWS_Lambda/Convert-PowerPoint-Presentation-to-PDF/Properties/launchSettings.json

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

PPTX-to-PDF-conversion/Convert-PowerPoint-presentation-to-PDF/AWS/AWS_Lambda/Convert-PowerPoint-Presentation-to-PDF/aws-lambda-tools-defaults.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"region" : "us-east-1",
1111
"configuration" : "Release",
1212
"function-architecture" : "x86_64",
13-
"function-runtime" : "dotnet8",
13+
"function-runtime" : "dotnet6",
1414
"function-memory-size" : 256,
1515
"function-timeout" : 30,
1616
"function-handler" : "Convert-PowerPoint-Presentation-to-PDF::Convert_PowerPoint_Presentation_to_PDF.Function::FunctionHandler",
17-
"framework" : "net8.0",
17+
"framework" : "net6.0",
1818
"function-name" : "PPTXtoPDF",
1919
"package-type" : "Zip",
2020
"function-role" : "arn:aws:iam::142887710098:role/LambdaRole",

0 commit comments

Comments
 (0)