Tim
Tim

Reputation: 99488

Is it possible to create an empty C# solution in Visual Studio 2015

In Visual Studio 2015 for C#, when starting with empty, I didn't see that I can create a new solution, but only a new project.

Thanks.

Upvotes: 1

Views: 1614

Answers (2)

HappyTown
HappyTown

Reputation: 6514

I have the Visual Studio 2015 Community edition. I see the blank solution can be created as

  • Launch Visual Studio
  • File > New Project > Templates > Other Project Types > Visual Studio Solutions > Blank Solutions enter image description here

Once you create the solution, you can add any type of projects to it.

Upvotes: 5

Kalyan
Kalyan

Reputation: 1200

Solutions are independent of the projects.

Do the following to create a solution:

Open Visual Studio

  • File-->New Project

On New Project window:

  • Templates-->Other Project Types-->Visual Studio Solutions-->Blank Solutions

Upvotes: 2

Related Questions