DNNCommunity / starter-module-spa

SPA module starter project for DNN Platform (formerly known as DotNetNuke) made by and for the DNN Community.
Other
5 stars 2 forks source link

Missing Startup.cs #2

Open SkyeHoefling opened 4 years ago

SkyeHoefling commented 4 years ago

The template is missing the standard Startup.cs class which is used for dependency injection. We should include a blank Startup.cs which is a standard in Microsoft's official Web API Templates.

public class Startup : IDnnStartup
{
    public void ConfigureServices(IServiceCollection services)
    {
        // register services
    }
}
david-poindexter commented 4 years ago

Thanks @ahoefling - I'll get this done. I had it on my list already but just didn't get a chance to add it yet since I was focusing on the MVC project yesterday. 😉