aspnetcore/test/AspNetCoreModule.TestSites..../StartupHelloWorld.cs

22 lines
646 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
namespace AspnetCoreModule.TestSites.Standard
{
public class StartupHelloWorld
{
public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(minLevel: LogLevel.Warning);
app.Run(ctx =>
{
return ctx.Response.WriteAsync("Hello World");
});
}
}
}