Justin Adler
Justin Adler
Currently, the `Core` project has a dependency on a nuget package `OAuth`. Phillip, you said that you can merge/embed this into the core so we don't need to have this...
With the new async/await code now pushed up to the `dev` branch, a new MVC `async controller` is needed.
The Nancy Module has this property : `public ICache Cache { get; set; }` I do this in the Module's ctor... ``` Before += context => { if (Cache ==...
@phillip-haydon bud - now that you've added in a `ViewRenderer` and `Negotiator` into the core Nancy with commit [dabe211....](https://github.com/NancyFx/Nancy/commit/dabe211555e5556294bcc13fb78db1b825196c6e) , should I be using the `Negotiator` for the return type...
A website needs to implement this interface `IAuthenticationCallbackProvider`. This allows the developer to handle the callback from the Provider (eg. Google). eg. Once the user auth's against Google, we come...
TL;DR; => http://www.asp.net/mvc/tutorials/security/preventing-open-redirection-attacks?utm_medium=twitter&utm_source=twitterfeed add the IsLocal check in SA.
https://dev.twitter.com/blog/application-only-authentication and https://dev.twitter.com/docs/auth/application-only-auth
It's 2021. Lets not ask people to download code to install the CLI or even download an exe _and then install_ an extra db, etc. Lets make this _really simple_...
G'day 👋🏻 Problem: If the runner is imported/added to the project _via transitive dependencies_ then the VS Test Explorer fails to 'see' it and dies: ``` Log level is set...
In my previous issue #37 I mention how `NLog` is like the de facto logging framework these days in .NET. Well, Serilog is the new kid on the block and...