Reputation: 501
We were able to create a node js web application (html, css, angular js and node js) and package within node-webkit to run it as a standalone application. This works like a charm !!!.
Similar to it, we want to package .net MVC web application as a standalone application and run it as a standalone app. This is required to easliy ship the application to any desired stakeholders.
Currently, not sure of the ways in achieving this requirement. Having said that, following are the questions - Is it possible to convert a .net web application to a standalone app? - If possible, what is the proposed method in achieving this requirement?
Upvotes: 4
Views: 2001
Reputation: 501
I was able to achieve this requirement using UltiDev Cassini Web Server Pro. This provides a light weight environment with an integrated Cassini web server for hosting ASP.net applications. It supports MVC4 application also.
To achieve this, I followed below steps:
Following above listed steps I was able to install a web application in target machine and run it without using IIS. Hope this information helps !!! :)
Upvotes: 2
Reputation: 3951
If the stakeholders have IIS and asp.net installed you could send them a web deploy package. Otherwise I think you lack the asp.net prerequisites.
Upvotes: 0
Reputation: 23
As far as I know you cannot self-host (aka run standalone) an MVC app as it depends on IIS.
Upvotes: 0