Use Nuget to install the Nancy and Nancy.Hosting.Self packages into the project.
Instantiate a new NancyHost object and pass in the relevant URL
using( var host = new NancyHost( hostConfiguration, new Uri( "http://localhost:1234" ) ) )
{
host.Start();
Console.WriteLine( "Running o...