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

后端 未结 9 1250
孤独总比滥情好
孤独总比滥情好 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:20

    If you are interested in finding subtypes of a project i.e. Under C# Windows Project Category, checking whether it is a Windows Form Application or WPF

    Try adding new item in the project and it will show you the items specific to that project type along with default options.

    For instance if there is a WPF project it shows the WPF related options like 'Window' , 'Page' 'User Control' ... In case of Window Form Application it Shows 'Window Form' etc.....

提交回复
热议问题