22 lines
491 B
C#
22 lines
491 B
C#
|
|
using System;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace IStartupInjectionAssemblyName
|
|
{
|
|
public class Startup : IStartup
|
|
{
|
|
public void Configure(IApplicationBuilder app)
|
|
{
|
|
}
|
|
|
|
public IServiceProvider ConfigureServices(IServiceCollection services)
|
|
{
|
|
return services.BuildServiceProvider();
|
|
}
|
|
}
|
|
}
|