Varadha31590
Varadha31590

Reputation: 381

Is it possible to self-host the asp.net mvc application without the use of IIS?

I am working in a small asp.net mvc application , so i want to self host this application without the help of IIS because i know IIS is not a light weight process.

Thanks in Advance

Upvotes: 3

Views: 1701

Answers (1)

Stelloy
Stelloy

Reputation: 2336

You could consider using an OWIN self hosted application - see Use OWIN to Self-Host ASP.NET Web API 2

There's also the option of IIS Express if you want something more lightweight.

Upvotes: 3

Related Questions