Handle csproj "Remove" globs
MSBuild Item returns empty strings if an attribute isn't set (which caused an IndexOutOfRangeException in NormalizePath). We were treating Excludes incorrectly, Remove directives provide the intended behaviour in the auto-including csproj format.
This commit is contained in:
parent
52f6ac81be
commit
8dbd7155b5
2 changed files with 5 additions and 3 deletions
|
@ -23,6 +23,9 @@ namespace GodotTools.Core
|
|||
|
||||
public static string NormalizePath(this string path)
|
||||
{
|
||||
if (string.IsNullOrEmpty(path))
|
||||
return path;
|
||||
|
||||
bool rooted = path.IsAbsolutePath();
|
||||
|
||||
path = path.Replace('\\', '/');
|
||||
|
|
|
@ -61,10 +61,9 @@ namespace GodotTools.ProjectEditor
|
|||
if (item.ItemType != itemType)
|
||||
continue;
|
||||
|
||||
string normalizedExclude = item.Exclude.NormalizePath();
|
||||
|
||||
var glob = MSBuildGlob.Parse(normalizedExclude);
|
||||
string normalizedRemove = item.Remove.NormalizePath();
|
||||
|
||||
var glob = MSBuildGlob.Parse(normalizedRemove);
|
||||
excluded.AddRange(includedFiles.Where(includedFile => glob.IsMatch(includedFile)));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue