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
Adding better support for serverless functions and sample projects to show how to use them (#243)
* Adding better support for serverless functions and sample projects to show how to use them
* Some pr feedback.
* Change name to ProcessQueueDeferred. Couple more lambda sample updates.
* Minor
* Change local server port from 50000 to 5000
Co-authored-by: Blake Niemyjski <[email protected]>
// Use the ToExceptionless extension method to submit this handled exception to Exceptionless using the default client instance (ExceptionlessClient.Default).
62
+
// This works and is convenient, but its generally not recommended to use static singleton instances because it makes testing and
63
+
// other things harder.
64
+
handledException.ToExceptionless().Submit();
65
+
}
66
+
67
+
// Unhandled exceptions will get reported since called UseExceptionless in the Startup.cs which registers a listener for unhandled exceptions.
// Use the ToExceptionless extension method to submit this handled exception to Exceptionless using the default client instance (ExceptionlessClient.Default).
40
+
// This works and is convenient, but its generally not recommended to use static singleton instances because it makes testing and
<!-- This property makes the build directory similar to a publish directory and helps the AWS .NET Lambda Mock Test Tool find project dependencies. -->
0 commit comments