Reputation:
I have just started to learn c# and want to do some starter worksheets, but I cant even figure out how to create an empty project for c# in Visual studio. I know this is a stupid question but I just can not figure it out. If anyone can help me out, it would be appreciated.
Upvotes: 3
Views: 5353
Reputation: 1182
Although a project must reside in a solution, you can create a solution that has no projects.
To create an empty solution
in the File menu, click New
and then click New Project
.
In the left pane, select Installed
, select Other Project Types
, and then select Visual Studio Solutions
from the expanded list.
In the middle pane, select Blank Solution
.
Set the Name and Location values for your solution, then click OK
.
See the Visual Studio documentation for further guidance.
Upvotes: 4