This page is likely outdated (last edited on 17 Feb 2009). Visit the new documentation for updated content.

Publishing Websites From Visual Studio

This article is incomplete, please add to it.

The easiest way to test your ASP.Net website running on Mono on Linux is to download the Mono VMWare image. It comes preconfigured with a running instance of Apache and mod_mono. These directions describe how to publish to this image from Visual Studio 2008, however they also apply to any similarly setup instance of Linux/Mono/Apache.

Table of contents

Example

Suppose we have a nifty little ASP.Net website that asks for two numbers, and returns them added together. Currently, we know our site works great on .Net, as we can tell from Visual Studio’s built-in development web server:

Aspexample1.png

Now we want to run our website on Mono/Apache.

Web Site vs Web Application

Visual Studio makes a distinction between “Web Site Projects” and “Web Application Projects”. The differences are described here on MSDN. The difference that affects deploying to Mono is that web application projects are precompiled, which Mono does not support. Therefore, you need to know which type of project you are deploying so you can follow the correct steps.

Publishing a Web Site Project

Publishing a web site project is easy.

  • Choose Build->Publish <website>
  • In the Publish Web Site wizard:
    • Fill in the path to your linux instance: \\linux\htdocs\MyWebsite
      • (Replace MyWebsite with whatever path you want.)
    • You can replace or delete existing files.
    • Copy “All files in the source project folder”.
    • Select “Include files from the App_Data folder.

Asppublish1.png

  • Click Publish
  • If you are prompted for a username/password, enter them.
    • For the Mono 2.2 VMWare image, this is mono/mono.
  • When it completes, you should be able to test your website by browsing to it:

Asppublish2.png

Publishing a Web Application Project

  • Choose Website->Copy Web Site
  • On the Copy Web Site dialog, choose Connect
    • Choose File System
    • Enter the path to your linux instance: \\linux\htdocs\MyWebsite
      • (Replace MyWebsite with whatever path you want.)
    • Choose Open

Aspcopy1.png

  • Select all the files to your website, and click the right arrow to copy them to the Linux image.

Aspcopy2.png

Setting up Applications

When you try to run your site, you may get an error like this:

Aspcopy4.png

This means you need to setup an ASP.Net application for your site, just like you would on IIS.

To do this:

  • TODO