How do you tell the Visual Studio project type from an existing Visual Studio project

后端 未结 9 1144
孤独总比滥情好
孤独总比滥情好 2020-11-27 14:04

Using Visual Studio 2005.

Is there anything in the .sln or .vcproj files (or anywhere else) that defines the project type / subtype?

Edit: What I mean is th

相关标签:
9条回答
  • 2020-11-27 14:21

    Follow: Solution Explorer -> hover/right click over your project item ( not the project folder. Check the Properties view to find if you clicked on the folder or the project) -> Properties. Then all information is available for the project.

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2020-11-27 14:33

    Double-click on "My Project" in the Solution Explorer, and look at the "Application type:" ComboBox. It tells you (and lets you change) the project type.

    0 讨论(0)
提交回复
热议问题