Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Aug 7, 2019
1 parent fd35abe commit cbf948b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions MyApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Funq;
using Microsoft.Extensions.Configuration;
using ServiceStack;
using MyApp.ServiceInterface;
using MyApp.ServiceModel;
Expand All @@ -27,10 +28,13 @@ public static void Main(string[] args)
}
}

public class Startup
public class Startup : ModularStartup
{
public Startup(IConfiguration configuration) : base(configuration){}

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public new void ConfigureServices(IServiceCollection services)
{
}

Expand Down

0 comments on commit cbf948b

Please sign in to comment.