ѕтƒ
ѕтƒ

Reputation: 3647

How to make visual studio solution file from .proj files

I have a msbuild project file myproject.proj. Now is there any way I can make a solution file (.sln) from the .proj file. If this is not possible. Is there any ways I can make a solution file from a group of csproj files?

Upvotes: 3

Views: 3172

Answers (1)

Digital_Reality
Digital_Reality

Reputation: 4738

If you would like to do manually.

  1. Open Visual Studio
  2. File>Open>Project/Solution
  3. Provide/Select existing vcxproj file.
  4. File>Save Solution. Provide name. Or If you fire build, it will ask you for name first time.

Same can be done for many vcxproj as well. Repeat step 3.

Upvotes: 1

Related Questions