-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Feature: .NET Core 2.0/2.1 debugging support #825
Feature: .NET Core 2.0/2.1 debugging support #825
Conversation
… feature/dotnetcore-debugging-simple
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.
LGTM.
Thanks for adding this, its a very exciting feature, with zero changes in SAM CLI's logic itself. 🎆 |
This is waiting on #823 to finish building so we can fix the build. I will update and merge this in once I have that complete. |
@@ -289,8 +297,9 @@ def _get_entry_point(runtime, debug_options=None): | |||
|
|||
@staticmethod | |||
def _supported_runtimes(): | |||
return {Runtime.java8.value, Runtime.go1x.value, Runtime.nodejs.value, Runtime.nodejs43.value, | |||
Runtime.nodejs610.value, Runtime.nodejs810.value, Runtime.python27.value, Runtime.python36.value} | |||
return {Runtime.java8.value, Runtime.dotnetcore20.value, Runtime.dotnetcore21.value, Runtime.go1x.value, |
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.
🎉
@ndobryanskyy We need to wait for the docker-lambda change right? |
@jfuss right. I will get back to you as soon as lambci/docker-lambda#130 is merged. Thanks for your feedback and help @sanathkr @thesriram @jfuss I really appreciate that! I'll fix minor issue with .rst here with unnecessary `` and update the doc PR with our latest findings |
… feature/dotnetcore-debugging-simple
…com/ndobryanskyy/aws-sam-cli into feature/dotnetcore-debugging-simple
Fixed small code formatting issue. |
lambci/docker-lambda#130 Merged 🎉 |
Issue #, if available:
#500 -> #568
Description of changes:
Enabled .NET Core debugging by adding corresponding to lambci/docker-lambda#130 entry point override utilizing
--debugger-spin-wait
.Also updated corresponding document any comments and suggestions are welcome as always.
Checklist:
make pr
passesBy submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.