New Solution

  • Thread starter Thread starter Lou
  • Start date Start date
L

Lou

I want to create a Solution that has 2 projects.
The solution is named MySolution.sln and the projects are named
MyProject1 and MyProject2.

How do I do this like a C++ has a workspace with multiple projects in them?

-Lou
 
Lou said:
I want to create a Solution that has 2 projects.
The solution is named MySolution.sln and the projects are named
MyProject1 and MyProject2.

How do I do this like a C++ has a workspace with multiple projects in them?

I don't know about the C++ side of things, but what do you want beyond
what Visual Studio lets you create very simply? What are you missing?
 
Create a new Visual Studio project, which will actually cause a new solution
to be created that contains your new project. Then, from the file menu or
by right-clicking the solution in the Solution Explorer, choose to "Add New
Project". Now, you will have 2 projects in the same solution.
 
Back
Top