Microsoft.Owin.SelfHost 4.2.3

Getting started with Microsoft OWIN self-host libraries:

This package contains libraries for hosting OWIN compatible HTTP components in your own process.

An example Startup class is included below. The Startup class can be called from your application as follows:

using (WebApp.Start<Startup>("http://localhost:12345"))
{
    Console.ReadLine();
}

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
#if DEBUG
        app.UseErrorPage();
#endif
        app.UseWelcomePage("/");
    }
}

For additional information see: https://github.com/aspnet/aspnetkatana http://www.owin.org/

No packages depend on Microsoft.Owin.SelfHost.

Version Downloads Last updated
4.2.3 1 08/15/2025
4.2.2 21 02/07/2024
4.2.1 23 02/07/2024
4.2.0 21 02/07/2024
4.1.1 23 02/07/2024
4.1.0 21 02/07/2024
4.0.1 22 02/07/2024
4.0.0 21 02/07/2024
4.0.0-preview1 21 02/15/2024
4.0.0-alpha1 20 02/15/2024
3.1.0 21 02/07/2024
3.1.0-rc1 22 02/15/2024
3.0.1 23 02/10/2020
3.0.0 20 02/07/2024
3.0.0-rc2 18 02/15/2024
3.0.0-rc1 21 02/15/2024
3.0.0-beta1 21 02/15/2024
3.0.0-alpha1 21 02/15/2024
2.1.0 23 02/07/2024
2.1.0-rc1 21 02/15/2024
2.0.2 21 02/07/2024
2.0.1 22 02/07/2024
2.0.0 21 02/07/2024
2.0.0-rc1 20 02/15/2024