About 14,800,000 results
Open links in new tab
  1. What are .sln and .vcproj files, and what do they contain?

    Aug 20, 2011 · What are .sln and .vcproj files, and what do they contain? Asked 14 years, 3 months ago Modified 6 years, 4 months ago Viewed 102k times

  2. How to open Visual Studio Solution File from the Command Prompt

    Today I was in the Windows Command Prompt after doing a git clone https://...MySolution.git and wanted to open the .sln (i.e., solution file) from the new directory of the cloned repo.

  3. Why and when should I ever be using .sln files? - Stack Overflow

    Jun 26, 2014 · When you double click on the .sln (solution) file, it will open that solution in Visual Studio. A solution allows you to group projects together in a single, erm, solution.

  4. How to force a Solution file (SLN) to be opened in Visual Studio 2013?

    Oct 22, 2013 · Setting the file assoc of the .sln to be the "Visual Studio version selector" made no change and the solution continued to open in 2010. The devenv (name).sln /upgrade method made …

  5. Why are there .sln, .suo and .csproj files? - Stack Overflow

    Oct 6, 2010 · The solution maintains the state information for projects in .sln (text-based, shared) and .suo (binary, user-specific solution options) files … [Source] Furthermore, also from MSDN: The …

  6. How do you create a Visual Studio Solution File (.sln) in the same ...

    Oct 26, 2016 · Generally what I do is start with a Blank Solution, which is under "Other Project Types-->Visual Studio Solutions" in the New Project dialog. Then, add the website and whatever other …

  7. How to build visual studio solution file .sln command line with ...

    Aug 9, 2013 · MSbuild accepts project name as part of "target" (/t) specification: MSBuild /nologo /t:ProjectName:Build SolutionFile.sln Or, if your project does not depend on the other projects in the …

  8. c# - what is the use of .CSProj and .Sln file? - Stack Overflow

    Oct 31, 2012 · For the Solution (.sln) file contents, you can find a lot of information on this MSDN article. Concerning the Project (.csproj) file contents, here is another MSDN article that describes what's …

  9. c# - Parsing Visual Studio Solution files - Stack Overflow

    Dec 14, 2012 · How can I parse Visual Studio solution (SLN) files in .NET? I would like to write an app that merges multiple solutions into one while saving the relative build order.

  10. .NET Core - When to use "dotnet new sln" - Stack Overflow

    Feb 21, 2020 · I'm a bit confused - the majority of .NET Core tutorials I have been reading have not mentioned "dotnet new sln" - they always just create the projects separately without any solution file …