Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I add a C# solution file in JetBrains Rider?

In Rider, if I open a folder that has a single .csproj file in it, how do I add a solution? Is there a way to do it inside Rider, like there is in Visual Studio, without resorting to the command line and closing/re-opening?

like image 441
nathanjw Avatar asked Dec 13 '18 19:12

nathanjw


People also ask

Can I add AC to my existing heating system?

The short answer to this is, “yes.” Yes, you can add an air conditioner to a forced-air heating system. It is, however, a complex process and we never recommend it be attempted by a homeowner. Of course, we'll say this about any air conditioning or heating installation.

How expensive is it to add AC?

Central air conditioning costs an average of $5,651 to install; the typical range runs from $3,800 for smaller systems to $7,500 for larger or upgraded systems, according to HomeAdvisor.

Can you install AC on your own?

While 87 percent of U.S. households use some type of air conditioning, central AC systems are the most sought-after for both convenience and accessibility. If flipping a switch for whole-house cooling is what you're after, you may wonder whether it's possible to install your own. And the answer is, you definitely can.

Can central air be added to existing furnace?

If your home already has a functioning air duct system, adding central air can be fairly easy and less costly. The technicians will inspect the existing ductwork to make sure it's sound and sealed well enough to move the air through your home efficiently. Then, they install a split system.


2 Answers

Looks like you can do this with Rider 2019.1 now.

Go to File -> New -> gives the option to add a new solution.

like image 57
nathanjw Avatar answered Oct 22 '22 12:10

nathanjw


AFAIK there's no way in Rider to toggle between folder mode and solution mode like you can do in Visual Studio.

The rest depends on what your intention is.

If you opened a folder containing a .csproj with File | Open File or Folder and you realized you were unable to build, debug or run your .NET application in this mode, you should just re-open it with File | Open Solution or Project, pointing Rider to the .csproj file.

If the above is not an issue but you want to take your existing .csproj project and wrap it into a .sln file, then select File | New Solution | Empty Solution, and when the new solution loads, add your existing project to it by right-clicking the solution node in Solution Explorer and selecting Add Existing Project.

like image 1
Jura Gorohovsky Avatar answered Oct 22 '22 11:10

Jura Gorohovsky