Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaben/ninject.extensions.glimpse
Glimpse Plugin for Ninject v3
https://github.com/jaben/ninject.extensions.glimpse
Last synced: 2 months ago
JSON representation
Glimpse Plugin for Ninject v3
- Host: GitHub
- URL: https://github.com/jaben/ninject.extensions.glimpse
- Owner: Jaben
- License: mit
- Created: 2011-07-10T19:32:12.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-13T01:17:54.000Z (over 11 years ago)
- Last Synced: 2024-10-19T21:46:10.789Z (3 months ago)
- Language: C#
- Homepage:
- Size: 2.7 MB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: License.txt
Awesome Lists containing this project
README
# Glimpse 1.2.x Plugin for Ninject v3.x
### What is Glimpse and Ninject?
Glimpse is an awesome open source Firebug for ASP.NET: http://getglimpse.com/
Ninject is an awesome open source dependency injector for .NET: http://ninject.org/
### What is this?
This Glimpse Plugin gives you a clearer view of your Ninject Modules, bindings and settings.
### Quick start
Simply drag and drop Ninject.Extensions.Glimpse.dll into your bin directory. It should automatically locate your Ninject container instance if it supports automatic extension loading.
### Manual Wireup
If you have ninject extension loading off, you'll need to manually add the Glimpse module to your new StandardKernel() creation call:
```C#
private static IKernel CreateKernel()
{
var kernel = new StandardKernel(new GetNinjectInstanceForGlimpseModule());
// Other Registration ommitted
return kernel;
}
```
OR```C#
private static void RegisterServices(IKernel kernel)
{
// Load Specific Modules
kernel.Load(new GetNinjectInstanceForGlimpseModule());
}
```