I have developped a web application by using the ASP .NET MVC 3 framework.
Therefore I have got a Visual Studio 2010 project to develop my web application.
I want to deploy my web application under IIS 5.1 on a remote machine.
I know I have to create a virtual directory under the IIS default web site node.
The virtual directory will be linked to a directory in the File Management System of the remote machine.
The FMS directory will contain files of my web application.
Question : What files and folders of my VS2010 project must be present in the FMS directory ?
I intend to create a folder named bin in the FMS directory.
The bin folder will contain DLLs used by my web application and not present in the GAC of the remote machine.
Question : Will I have to modify the Web.config file ?
The folder corresponding to my VS2010 project contains a folder named bin as well.
The bin folder contains a DLL with the same name of my application.
Question : What is this DLL used for ?