Michael Wolfenden
Michael Wolfenden
I am getting an error when using an async route for my homepage: ``` csharp Get["/", true] = async (_, __) => await RenderHomepage(); ``` ``` System.NullReferenceException was unhandled by...
### Bug Report Strings containing floats ending in trailing zeros are unable to be coerced to floats. Instead a `'attr' must be of type number` error is raised. For example...
### Describe the bug I have a login endpoint that on successful login returns the session expiry time. On successful login, I want to set the `staletime` of the login...
# This is a Feature Proposal ## Description With the new [AWS SDK for JavaScript v3](https://github.com/aws/aws-sdk-js-v3) moving towards general availability, I was curious whether there were plans to support it...
Microsoft have just published their [guidance for creating .NET libraries](https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/) and are now [recommending that publicly distributed .NET libraries should be strongly named.](https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/strong-naming#create-strong-named-net-libraries) As a library author myself, I understand...
I just wanted to send you a quick note and say thank-you for the work you have done on this project. It has made my life 💯 easier.
I just wanted to send you a quick note and say thank-you for the work you have done on this project. It has made my life 💯 easier.
# Issue When bundling with `webpack` and targeting `node` I get the following warnings: ``` WARNING in ./node_modules/fastest-validator/lib/helpers/prettier.js 10:13-26 Critical dependency: the request of a dependency is an expression @...
For example the following test doesn't compile ```csharp public async Task Promote_with_async_methods_in_the_middle_of_the_chain_but_not_starting_the_chain(long id) { var gateway = new EmailGateway(); // GetById rather than GetByIdAsync return await GetById(id) .ToResult("Customer with such...