This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create a new ASP.NET 4.5 project in VS2015, selecting the Empty Template | |
Add OWIN references through nuget (Install-Package Microsoft.Owin.Host.SystemWeb and Microsoft.Owin.StaticFiles) | |
Add a startup file similar to this: | |
[assembly: OwinStartup(typeof(MyApp.Startup))] | |
namespace MyApp.UI | |
{ | |
public class Startup | |
{ | |
public void Configuration(IAppBuilder app) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using MoonSharp.Interpreter; | |
using MoonSharp.Interpreter.Debugging; | |
namespace Tutorials.Chapters | |
{ |