Package | NuGet Stable | Downloads |
---|---|---|
DependencyInjection.Analyzer |
PM> Install-Package DependencyInjection.Analyzer
Insert code services.AddDependencyInjectionAnalyzer();
and required using
directive into Startup.cs as follows.
using DependencyInjection.Analyzer; // Add
....
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddDependencyInjectionAnalyzer(); // Add
}
....
Eg. input https://localhost:44336/services