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

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

    Some further research and I found this:

    INFO: List of known project type Guids.

    My .sln file contains:

    Visual Studio 2005
    Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AddNumbers", "AddNumbers.csproj", "{2C81C5BB-E3B0-457E-BC02-73C76634CCD6}"

    The link shows:

    Project Type Description Project Type Guid
    Windows (C#) {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}

    So it's Windows C# and the subtype is as per @HardCode's reply. In my case, it's "Console Application".

提交回复
热议问题