Tutorial by Examples

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...
Prerequiste steps: Get dotnet core for your platform: Dotnet Core Follow instructions and make sure dotnet core is working Get Visual Studio Code for your platform: VS Code Launch Visual Studio Code (VS code) and install the C# extension then reload Create self hosted NancyFx project: ...

Page 1 of 1