You would have used ClickOnce deployment / publishing technique for your projects at some point. If not then I would recommend it as it serves as web based installer / setup with minimal configuration and very easy to learn / maintain and push updates. You can publish your project and host the deployment package on Web Server. Typically you would do it on an IIS web server. IIS web server by default understands the artifacts of ClickOnce package and contains MIME types that allows this package to be requested or installed for web server. But you are not limited to IIS web server and can host this package on any web server. For example - Apache or Nignx (on Ubuntu). These web server does not know about the file types / MIME types of click once package so you need to take care of one extra step to make it work. Following is the » Read more

 Jsinh