Reputation: 381
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
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