How to determine the project type in visual studio

前端 未结 5 1909
一生所求
一生所求 2020-12-02 14:23

How can you determine the \"type\" of a project in Visual Studio?

For example, if a project is a class library, a web application project, a WinForms project, a WCF

5条回答
  •  囚心锁ツ
    2020-12-02 14:55

    Easy solution.

    If you want to know if it's a WCF Project or ASP.NET Web Service simply open your project's folders in File Explorer. You can hover over the icon with your mouse and a tooltip will display the project type as shown in the picture. Also, you can look under the Type column in File Explorer and it shows it there as well.

    WCF Web Service Project:

    ASP.NET Web Service Project:

    Also to note, if your project has a Resources.Designer.cs or Settings.Designer.cs in its Properties folder it's likely a WinForms application.

提交回复
热议问题