summaryrefslogtreecommitdiff
path: root/modules/mono/editor/GodotSharpTools/Project/ProjectExtensions.cs
blob: 6a977315397157232cf521d04ceab8bdb1318004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using Microsoft.Build.Construction;

namespace GodotSharpTools.Project
{
    public static class ProjectExtensions
    {
        public static bool HasItem(this ProjectRootElement root, string itemType, string include)
        {
            string includeNormalized = include.NormalizePath();

            foreach (var itemGroup in root.ItemGroups)
            {
                if (itemGroup.Condition.Length != 0)
                    continue;

                foreach (var item in itemGroup.Items)
                {
                    if (item.ItemType == itemType)
                    {
                        if (item.Include.NormalizePath() == includeNormalized)
                            return true;
                    }
                }
            }

            return false;
        }

        public static void AddItemChecked(this ProjectRootElement root, string itemType, string include)
        {
            if (!root.HasItem(itemType, include))
            {
                root.AddItem(itemType, include);
            }
        }

        public static Guid GetGuid(this ProjectRootElement root)
        {
            foreach (var property in root.Properties)
            {
                if (property.Name == "ProjectGuid")
                    return Guid.Parse(property.Value);
            }

            return Guid.Empty;
        }
    }
}