Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to determine the .NET project type in Visual Studio?

Could you please tell me how to determine the type of an existing .NET project in Visual Studio? By the project type I mean: C# application, WPF application, etc.

I have been transfered a bunch of projects from my coworker. There are many Library projects, each of them does a separate job such as: Declare entities, do sync.

All of them have the same icon on Visual Studio Solution Explorer. I just want to know which template these projects based on.

like image 837
Nguyen Minh Binh Avatar asked Nov 28 '12 07:11

Nguyen Minh Binh


1 Answers

I guess by project type you think of the project template used to create the project...

to find the output type right click on Project -> Properties -> Application -> Output Type

As for the difference between c# and other projects: c# project files have the file extension .csproj while i.e. VB projects use .vbproj

like image 199
user1859022 Avatar answered Sep 17 '22 15:09

user1859022