Questions tagged [sln-file]

sln is a file format in Visual Studio designed to store "solution", a structure for organizing and maintaining project information similar to project workspace (.dsw) files in Visual C++ 6.0.

sln is a file format in Visual Studio designed to store "solution", a structure for organizing and maintaining project information similar to project workspace (.dsw) files in Visual C++ 6.0.

http://msdn.microsoft.com/en-us/library/bb165951%28v=vs.90%29.aspx

90 questions
0
votes
1 answer

Is it possible to start Visual Studio and open a .sln file from a browser?

I'm building a website where students can complete exercises. When a students starts an exercise I add a solution to the students TFS repository. I want to open this solution in Visual Studio from the browser. If it works students will only need to…
0
votes
0 answers

Why do I get, "ElementAtOrDefault' is not a member of 'System.Data.EnumerableRowCollection"?

I am trying to get a VB solution to run (just took it over to maintain). When I try to run it via F5, I get several errors, the first of which is: Error 13 'ElementAtOrDefault' is not a member of 'System.Data.EnumerableRowCollection(Of…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
1 answer

Unable to build sln because of v11.0.0.0 Microsoft.TeamFoundation reference error

I am unable to build .sln in VS2010. I have VS2013 installed aswell Have referenced dlls from "c:\program files (x86)\microsoft visual studio 12.0 "references
prashanthkr08
  • 75
  • 1
  • 2
  • 16
0
votes
0 answers

Missing csproj file - Recreate/regenerate one

I took over an ASP.Net application from a co-worker. It is not MVC; it is a web pages application. There is no *.csproj file in the application at all. How can I create one? The solution has a line like this: Project("{guid}") = "AdminSite", ".",…
Paul
  • 5,700
  • 5
  • 43
  • 67
0
votes
1 answer

CentOS 6 .sln xbuild compilation error (SteamBot)

I recently just started using linux and I'm not very familiar with some of the errors or commands. I keep getting the following error and really can't understand why "/home/steambotv1.0/SteamBot-master/.nuget/../.ci/exec-with-retry.sh: No such file…
Dan Usman
  • 21
  • 2
0
votes
1 answer

Visual Studio Project Files: Choose which projects to build?

Is there a way to specify which projects in a Visual Studio Project File (.sln) are built? I want to build only certain projects based on an input to a script, but I don't want to run multiple seperate builds from different .slns, I want to have it…
ddnm
  • 187
  • 1
  • 10
0
votes
1 answer

When building a project, cannot find a sub project on the server

I am trying to build the project on the server, and it says it cannot find a test project (sub project). I have recently added this sub project to the project. I checked the folder and it shows me the abc.js.csproj file. I run 'git clean -xfd' and…
stackHelp
  • 193
  • 1
  • 2
  • 13
0
votes
1 answer

Solution file gets changed with Visual Studio update, should I check in?

Recently my system got update and with that visual studio also gets updated. It looks like minor update. Now my project solution file contains Visual Studio version which is changed now. Should I check in the Solution file? Will it affect project…
0
votes
1 answer

Questions Related with .slnFile

Question 1: is the format of default solution file of c# ProjectText always same? Project(Solution GUI) = SolutionName , ProjectPath, csProjPath, ProjectGUI e.g: Project("{FAE14EC0-321D-12D3-GF35-01C04F79EFBC}") = "WindowsFormsApplication26",…
Elegiac
  • 361
  • 2
  • 15
0
votes
0 answers

How can I attach to an existing TFS project in VS 2003 / XP Mode?

In order to bring over some files from source control into my XP-Moded instance of Visual Studio 2003, I was able to bring over some of the files from source control by selecting (in Visual Studio 2003) File > Source Control > Open From Source…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
1 answer

MVC project stops working when I move sln file

I have created an MVC project and installed umbraco 7 through my VS2013 Upon creation if I choose 'Create directory for solution' then VS place sln file in the newly project folder and creates an internal folder where it places the project files.…
nickornotto
  • 1,946
  • 4
  • 36
  • 68
-1
votes
1 answer

Visual studio git push failed, lost .sln and cannot recover project

This is my final assignment for my course. I worked really hard on it, and was supposed to push the files to a git repository. I tried doing so and it failed, I believe I pressed revert afterwards, it did nothing. When I went to check to my local…
-1
votes
1 answer

Cant Open 2 .sln files in Visual Studio 2019

I'm trying to open up two .SLN (solution) files in Visual Studio, but whenever I drag one in, the other goes away... Help?
-1
votes
1 answer

Sharing csproj files between solutions

I've been looking into this for quite a long time and still havent found any satisfying solutions. We have a few shared libraries (.csprojs) which also have dependencies on each other as well as 3rd party dlls. I want to have these shared projects…
-4
votes
1 answer

Work with C# Project and Solution programmatically

I am looking for approach add existing C# Project (.csproj) into solution (.sln) programmatically on C#. Will be good if posible escape use “illegal” way like parsing and edit xml document. At the end of work, result should be like adding existing…
1 2 3 4 5
6