views:

713

answers:

5

I have an existing directory structure that is all nicely checked into SVN, so I don't really want to mess with it.

The website code lives in a folder called C:\Projects\TheProject\Website. I want to bring the website files into a new Web Application Project without changing the directory structure.

Ideally the resulting file structure would look like this:

  • C:\Projects\TheProject\TheProject.sln
  • C:\Projects\TheProjects\Website\Website.csproj

No matter what I try I dont get what I want. There is no option to create a web application from existing code. This is incredibly very frustrating. Does anyone know if it is possible?

A: 

What have you tried? I normally create a blank solution and add existing folders (drag and drop on solution explorer works best), and have not had a problem.

IPX Ares
A: 

in VS 2008 File->New->Project From Existing Code

Funky Dude
Sorry there is no option for Web Applications
cbp
A: 

OK I figured it out. It's weird, but the following steps will work:

  1. Open fresh copy of Visual Studio
  2. File->New Project, select Web Application
  3. Use the following settings:

    Name: Website (this is the name of the existing folder with the website files in it) Location: C:\Temp\ (anywhere will do for now) Solution Name: TheProject (name of the existing project's root folder) Check "Create directory for solution"

  4. Delete the auto-created Default, Global and Web.config files

  5. Save All and close Visual Studio
  6. In Windows Explorer, copy the new folder on top of the existing folder so that the files are merged.

  7. Double click on the sln file to open Visual Studio again.

  8. Select "Show all files" (at the top of Solution Explorer)

  9. Right click on any files or folders you want to add and select Include in Project.

cbp
+1  A: 

Create a new web project with a .csproj file. Delete all the files it comes with. Drag everything into the project.

tsilb
Thanks, this is the one paragraph summary of the answer I wrote before
cbp
A: 

Have you tried something like this?

  1. Create a new Visual Studio Blank Solution from File-->New Project-->Other Project Types-->Blank Solution, making sure to specify c:\Projects\TheProject as your solution directory.
  2. Copy the folder with all of the existing website stuff into c:\Projects\TheProject\WebSite.
  3. Back in Visual Studio, right-click your solution in Solution Explorer and select "Add Existing Website." Then, pick your c:\Projects\TheProject\WebSite folder.

Good luck, HTH.

AJ