You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tools/LambdaTestTool/README.md
+20-9Lines changed: 20 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,17 +2,20 @@
2
2
3
3
The AWS .NET Mock Lambda Test Tool is a tool that can be used to load a .NET Core Lambda project and execute the selected code inside an emulated Lambda environment. An IDE that is attached to the process hosting this tool can then debug and step through the .NET Core Lambda code. The tool is optimized for quick local debugging with minimal dependencies.
4
4
5
-
**Note:** this tool is not a local Lambda environment. This tool is optimized for quick local debugging with minimal dependencies. For example, the targeted .NET Core Lambda code is run within the process of this tool which is run on the host OS. The host OS is usually Windows or macOS. The host OS is not Amazon Linux, the OS for the Lambda service. Due to these design differences, this tool is not intended to diagnose platform specific issues but instead it can be useful for debugging application logic issues.
5
+

6
6
7
-
*[Getting Started](#getting-help)
8
-
*[Installing and Running](#installing-and-running)
9
-
*[Configure for Visual Studio](#configure-for-visual-studio)
10
-
*[Configure for Visual Studio Code](#configure-for-visual-studio-code)
11
-
*[Configure for JetBrains Rider](#configure-for-jetbrains-rider)
12
-
*[Configure for Visual Studio for Mac](#configure-for-visual-studio-for-mac)
13
-
*[Known Limitations](#known-limitations)
7
+
**Note:** this tool is not a local Lambda environment. This tool is optimized for quick local debugging with minimal dependencies. For example, the targeted .NET Core Lambda code is run within the process of this tool which is run on the host OS. The host OS is usually Windows or macOS. The host OS is not Amazon Linux, the OS for the Lambda service. Due to these design differences, this tool is not intended to diagnose platform specific issues but instead it can be useful for debugging application logic issues.
8
+
9
+
-[Getting Started](#getting-help)
10
+
-[Installing and Running](#installing-and-running)
11
+
-[Configure for Visual Studio](#configure-for-visual-studio)
12
+
-[Configure for Visual Studio Code](#configure-for-visual-studio-code)
13
+
-[Configure for JetBrains Rider](#configure-for-jetbrains-rider)
14
+
-[Configure for Visual Studio for Mac](#configure-for-visual-studio-for-mac)
15
+
-[Known Limitations](#known-limitations)
14
16
15
17
## Getting Help
18
+
16
19
This tool is currently in preview and there are some known limitations. For questions and problems please open a GitHub issue in this repository.
17
20
18
21
## AWS Credentials
@@ -88,7 +91,15 @@ To debug with Visual Studio Code and the .NET Mock Lambda Test Tool edit the [la
88
91
"stopAtEntry": false,
89
92
"internalConsoleOptions": "openOnSessionStart"
90
93
},
91
-
```
94
+
```
95
+
96
+
To customize the launch behavior for the debugger, you can pass additional arguments via the `args` property:
0 commit comments