gruber
gruber

Reputation: 29729

visual studio cant see new project from existing code

I cant see this command in file menu. File->New->Project from existing files ... there isnt it.

how can i customise visual studio to see it ?

thanks for help

Upvotes: 2

Views: 5088

Answers (3)

Joel in Gö
Joel in Gö

Reputation: 7570

To make a project from existing source files: if you do not have a project for them yet you need to first make a new project. This will automatically make a ProjectName.CS file; you can simply delete this file in the Solution Explorer. Then right-click on the project folder, and choose "Add...." -> "Existing item", and choose the file or files you already have.

Upvotes: 1

Cédric Guillemette
Cédric Guillemette

Reputation: 2408

I presume you have Visual Studio 2010 professionnal and above...

I see two options to bring back that menu!

  1. Reset your settings

  2. Customize the File menu to add up the missing command (See To add a command to a menu or oolbar.

alt text

Upvotes: 3

Oded
Oded

Reputation: 499012

To add an existing project to your solution, right click on the solution in the solution explorer, select Add -> Existing Project....

If this isn't what you are asking, please clarify your question. What exactly are you trying to do?

Upvotes: 0

Related Questions