A game about forced loneliness, made by TACStudios
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 *--------------------------------------------------------------------------------------------*/
5using System;
6
7namespace Microsoft.Unity.VisualStudio.Editor
8{
9 internal class SolutionProjectEntry
10 {
11 public string ProjectFactoryGuid { get; set; }
12 public string Name { get; set; }
13 public string FileName { get; set; }
14 public string ProjectGuid { get; set; }
15 public string Metadata { get; set; }
16
17 public bool IsSolutionFolderProjectFactory()
18 {
19 return ProjectFactoryGuid != null && ProjectFactoryGuid.Equals("2150E333-8FDC-42A3-9474-1A3956D46DE8", StringComparison.OrdinalIgnoreCase);
20 }
21 }
22}