Skip to content

Commit 780e9aa

Browse files
committed
Don't try to include files with action=UnRegister
1 parent 8fb0c68 commit 780e9aa

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Build/BuildScripts/Package.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
from component in package.Element("components").Descendants("component")
2626
let componentType = component.Attribute("type").Value
2727
from file in component.Descendants().Descendants<XElement>(componentType.ToLowerInvariant())
28+
where file.Attribute("action")?.Value != "UnRegister"
2829
let path = file.Element("path")
2930
let name = file.Element("name")
3031
let sourceFileName = file.Element("sourceFileName")

0 commit comments

Comments
 (0)