Skip to content

Instantly share code, notes, and snippets.

@gussiciliano
Created July 27, 2017 04:50
Show Gist options
  • Save gussiciliano/dfc15a9d3c09560949e2b66ae73a7a9d to your computer and use it in GitHub Desktop.
Save gussiciliano/dfc15a9d3c09560949e2b66ae73a7a9d to your computer and use it in GitHub Desktop.
using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
namespace ConsoleApplication
{
public class Startup
{
public void Configure(IApplicationBuilder app)
{
app.Run(context => context.Response.WriteAsync(“Hello World, from ASP.NET!));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment