Addressed feedback
This commit is contained in:
parent
dbf7435c3c
commit
01021a0a6d
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ namespace Microsoft.DotNet.ProjectModel.Files
|
|||
file.IsCustomTarget = true;
|
||||
|
||||
// Prefer named targets over default ones
|
||||
includeEntries.RemoveWhere(f => string.Equals(f.SourcePath, file.SourcePath) && f.IsCustomTarget == false);
|
||||
includeEntries.RemoveWhere(f => string.Equals(f.SourcePath, file.SourcePath) && !f.IsCustomTarget);
|
||||
includeEntries.Add(file);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue