找出它在Visual Studio中的项目类型

时间:2014-11-03 21:44:31

标签: c# asp.net wcf project project-types

我想在visual studio中找到一个项目的类型。当我进行研究时,我发现了一些信息,当.csproj文件的projecttypeGuid与MSDN网站和以下链接中的列表进行比较时,没有提供有关如何查找WCF项目的子类型的任何信息。当我比较时,我将C#和Web应用程序作为项目类型,但我有两个在我的.csproj文件中用分号分隔的projecttypeguid,它没有提供检查它是什么类型的WCF项目的方法。 p>

我提到的一些链接是:

  1. How to find out what type of project I have in Visual Studio 2010

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

  3. determine project type in visual studio

2 个答案:

答案 0 :(得分:1)

我认为你会发现这个问题很有用。它标识了应该枚举项目的注册表项"类型"和" Flavors",分别是第一和第二个guid。

What is the significance of ProjectTypeGuids tag in the visual studio project file

您可能需要检查其他注册表项,具体取决于您使用的Visual Studio版本。此示例使用Visual Studio版本10(即VS 2010)。当我检查一个类似的" Visual Studio 12的注册表路径HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\12.0,我找不到Packages子项,因此该方法可能已更改。

如果您将提供更多详细信息,例如Visual Studio和ASP.NET版本,或特定项目GUID,我认为我们可以提供更有用的响应。

干杯!

答案 1 :(得分:0)

我想如果你转到项目的属性窗口,你会看到下面这张图片后的信息。

enter image description here

请查看输出类型。它显示了类库。如果您的项目显示Windows应用程序,则输出是Windows应用程序。