This opens up huge potential while developing on-premise and cloud apps, be it windows , web based or mobile app.
GitHub - IdentityServer/IdentityServer3: OpenID Connect Provider and OAuth 2.0 Authorization Server Framework:
'via Blog this'
Thursday, July 7, 2016
Monday, May 30, 2016
Configure Asp.net MVC 5 with Ninject
Configure Asp.net MVC 5 with Ninject:
How to get Ninject working with asp.net MVC 5
Install-Package Ninject.MVC5
This will create the file in your solution:
App_Start\NinjectWebCommon.cs
Then to wire up an interface for resolution to a concreate implementation, just:
private static void RegisterServices(IKernel kernel) {
kernel.Bind<ISomeService>().To<SomeConcreateImplementation>();
}
Unity:
Modify UnityConfig.cs to register service
Add this to App_start: UnityConfig.RegisterComponents();
Subscribe to:
Posts (Atom)
Disable Microsoft Defender for Cloud for Visual Studio Subscription (MSDN)
I use a visual studio pro subscription which comes with $150 azure cloud credit, for some reason Microsoft Defender for Cloud was turned on ...