finder
finder

Reputation: 111

reopening created windows form application from visual studio

how to reopen a created visual studio project? when i reopen a created project in visual studio (by double clicking .csproj) the GUI (i made windows form application) is not appearing, why?

Upvotes: 1

Views: 1998

Answers (2)

Danny Beckett
Danny Beckett

Reputation: 20806

Just to state the obvious too:

View > Solution Explorer > Program.cs

Upvotes: 0

Freeman
Freeman

Reputation: 5801

You need to open the file that contains the .sln extension, not your .csproj file because that will open just one project, not the entire solution.

you can understand it like this:

csproj = C Sharp Project; sln = solution

Upvotes: 2

Related Questions