Skip to content

Instantly share code, notes, and snippets.

@DCCoder90
Created September 19, 2018 21:33
Show Gist options
  • Save DCCoder90/72a41cb1f768cb8afd9c5c1686c94350 to your computer and use it in GitHub Desktop.
Save DCCoder90/72a41cb1f768cb8afd9c5c1686c94350 to your computer and use it in GitHub Desktop.
For micro-api tutorial
using System;
using Microsoft.Owin.Hosting;
namespace SelfHosted{
class Program{
static void Main(string[] args){
using (WebApp.Start("http://localhost:8080")){
Console.WriteLine("Web Server is running.");
Console.WriteLine("Press any key to quit.");
Console.ReadLine();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment