暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SolutionProjectEntry.cs 866B

12345678910111213141516171819202122
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. using System;
  6. namespace Microsoft.Unity.VisualStudio.Editor
  7. {
  8. internal class SolutionProjectEntry
  9. {
  10. public string ProjectFactoryGuid { get; set; }
  11. public string Name { get; set; }
  12. public string FileName { get; set; }
  13. public string ProjectGuid { get; set; }
  14. public string Metadata { get; set; }
  15. public bool IsSolutionFolderProjectFactory()
  16. {
  17. return ProjectFactoryGuid != null && ProjectFactoryGuid.Equals("2150E333-8FDC-42A3-9474-1A3956D46DE8", StringComparison.OrdinalIgnoreCase);
  18. }
  19. }
  20. }