-
Notifications
You must be signed in to change notification settings - Fork 494
Fix missing entry point exception with Amazon.Lambda.TestTool #2251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "Projects": [ | ||
| { | ||
| "Name": "Amazon.Lambda.RuntimeSupport", | ||
| "Type": "Patch", | ||
| "ChangelogMessages": [ | ||
| "Fixed missing entry point exception when used via Amazon.Lambda.TestTool for a class library based Lambda function that is also an executable with a dependency on Amazon.Lambda.RuntimeSupport." | ||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.TestTool", | ||
| "Type": "Patch", | ||
| "ChangelogMessages": [ | ||
| "Update to include version 1.14.2 of Amazon.Lambda.RuntimeSupport" | ||
| ] | ||
| }, | ||
| { | ||
| "Name": "Amazon.Lambda.AspNetCoreServer.Hosting", | ||
| "Type": "Patch", | ||
| "ChangelogMessages": [ | ||
| "Update to include version 1.14.2 of Amazon.Lambda.RuntimeSupport" | ||
| ] | ||
| } | ||
| ] | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,7 +15,7 @@ | |||||
| <PackAsTool>true</PackAsTool> | ||||||
| <PackageId>Amazon.Lambda.TestTool</PackageId> | ||||||
| <ToolCommandName>dotnet-lambda-test-tool</ToolCommandName> | ||||||
| <Version>0.11.1</Version> | ||||||
| <Version>0.11.0</Version> | ||||||
|
||||||
| <Version>0.11.0</Version> | |
| <Version>0.11.2</Version> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -170,7 +170,6 @@ | |
| <Target Name="build-lambda-test-tool-package" DependsOnTargets="init"> | ||
| <Exec Command="dotnet msbuild aws-lambda-test-tool-netcore.sln /t:Rebuild /p:Configuration=$(Configuration) /p:AssemblyOriginatorKeyFile=$(AssemblyOriginatorKeyFile) /p:SignAssembly=$(SignAssembly)" WorkingDirectory="..\Tools\LambdaTestTool"/> | ||
| <Exec Command="$(PackCommand) Amazon.Lambda.TestTool.BlazorTester60-pack.csproj" WorkingDirectory="..\Tools\LambdaTestTool\src\Amazon.Lambda.TestTool.BlazorTester"/> | ||
|
||
| <Exec Command="$(PackCommand) Amazon.Lambda.TestTool.BlazorTester70-pack.csproj" WorkingDirectory="..\Tools\LambdaTestTool\src\Amazon.Lambda.TestTool.BlazorTester"/> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are we only removing the Net7 version only?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because .NET 7 csproj file was actually deleted from the repo. This is a msbuild target used for local builds not what the CI system uses and it had gotten stale. It was currently failing because we previously deleted the .NET 7 version. |
||
| <Exec Command="$(PackCommand) Amazon.Lambda.TestTool.BlazorTester80-pack.csproj" WorkingDirectory="..\Tools\LambdaTestTool\src\Amazon.Lambda.TestTool.BlazorTester"/> | ||
| </Target> | ||
| <Target Name="build-lambda-test-tool-package-cicd" DependsOnTargets="init"> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you doing a version downgrade?