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

How to run .sln files on centos 7

Now i have search for several days how to manage to run SLN files on centos7. I haven't still figure it out. This is my last change to figure it out, so now i hope someone can help me. I really want this to work. UPPDATE: I have manage to install…
Niklas
  • 543
  • 2
  • 8
  • 17
0
votes
0 answers

Can't See Namespace in other project

I have an asp.net web application project and a regular c# csproj project. My web application project doesn't see the namespace that's in my csproj project after I imported it in and added a reference to it. I have Visual Studio Enterprise 2017. Can…
0
votes
0 answers

How can I synchronize Solution Explorer’s folder structure with the one in my file system (where the solution belongs)?

This problem appears after moving or renaming projects or folders via Solution Explorer in Microsoft Visual Studio 2019. Is there a way to automatically synchronize Solution Explorer’s structure with the file system structure? This is what my…
0
votes
1 answer

Aggregating .Net Core appsettings.json

I have multiple project under the same solution. My concern is the following: Is there any way to aggregate all appsettings.json from different projects into one file in the same solution ?
Damian
  • 131
  • 1
  • 7
0
votes
1 answer

VS2017 MVC project wont open from .sln but Team Explorer works fine

I'm working on a project which creates large XML files of 800k plus. I was having memory issues so I changed my IIS option in Tools>Options to 64 bit which helped. The problem worsened when my project hung and wasn't responding so I closed it…
user616076
  • 3,907
  • 8
  • 38
  • 64
0
votes
2 answers

How to store average score and high score in class?

I don't know how to store a player's average score, high score and average time to complete a game in my user.cs class. Whenever the player finishes a round of my game, the average and high scores and average time have to update every time in their…
0
votes
0 answers

Publishing in multi-project solution fails with only one project can be specified

Hello i am trying to run dotnet -c Release [sourcepath] --output [destination] a project in a .sln that has multiple projects. The file-structure of the solution is like this: RootFolder -.sln Folder1 - Csproj1 Folder2 …
Bercovici Adrian
  • 8,794
  • 17
  • 73
  • 152
0
votes
0 answers

C# Project with either ProjectReference or Reference

we are working on many different applications where each application has its own VS solution (and of course a CS project). Additionally there are many libraries (also CS projects) that are shared between the applications and are included in the VS…
msedi
  • 1,437
  • 15
  • 25
0
votes
1 answer

Which file to deploy after .sln msbuild is successful

I am trying to deploy a web application in AWS/AZure using VSTS for that i have .sln soultion file to build. MS build is successful but it does not generate any artifacts even if it does i am not able to find it. I Don't know which file to deploy…
0
votes
1 answer

Visual Studio: Load operation failed

When I try to open my project, this message is appear: Name cannot begin with the '<' character, hexadecimal value 0x3C. Line 21, position 2. and then I can't open my project.
0
votes
0 answers

How do I modify a .sln file with Yeoman?

I am using Yeoman to create new projects in my Visual Studio solution. I can already generate .csproj and source files, but I can't figure out an easy way to register the project in the solution. .sln files are not XML, they have their own format. I…
Dmytro Shevchenko
  • 33,431
  • 6
  • 51
  • 67
0
votes
0 answers

How to fix Virtual directory error when asp.net .sln file open?

I am trying to open my asp.net project but some warning shows. After this warning I have clicked yes and they were responding error. How can I handle this virtual directory problem ? This error is shown in the Image below
sufisoft
  • 1
  • 2
0
votes
1 answer

How to create Visual Studio (.sln) file

I am currently working on a project which is basically conversion of VisualFoxPro projects to ASP MVC project dynamically I have created all folders,controllers,views files in my code on a button click by simply creating a file with that particular…
0
votes
0 answers

Excluding projects from build programmatically

Maybe I am overlooking something here but I can't seem to find a good way to parse a solution file and programmatically exclude some projects (.vcxproj) from the build. Many SO posts reference the SolutionFile class in Microsoft.Build.Construction…
ForeverLearning
  • 6,352
  • 3
  • 27
  • 33