No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }