summaryrefslogtreecommitdiff
path: root/src/ext/DifxApp/wixext/DifxAppCompiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/DifxApp/wixext/DifxAppCompiler.cs')
-rw-r--r--src/ext/DifxApp/wixext/DifxAppCompiler.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ext/DifxApp/wixext/DifxAppCompiler.cs b/src/ext/DifxApp/wixext/DifxAppCompiler.cs
index e056988f..7d000f67 100644
--- a/src/ext/DifxApp/wixext/DifxAppCompiler.cs
+++ b/src/ext/DifxApp/wixext/DifxAppCompiler.cs
@@ -38,7 +38,6 @@ namespace WixToolset.DifxApp
38 { 38 {
39 case "Component": 39 case "Component":
40 var componentId = context["ComponentId"]; 40 var componentId = context["ComponentId"];
41 var directoryId = context["DirectoryId"];
42 var componentWin64 = Boolean.Parse(context["Win64"]); 41 var componentWin64 = Boolean.Parse(context["Win64"]);
43 42
44 switch (element.Name.LocalName) 43 switch (element.Name.LocalName)
@@ -68,6 +67,9 @@ namespace WixToolset.DifxApp
68 int attributes = 0; 67 int attributes = 0;
69 var sequence = CompilerConstants.IntegerNotSet; 68 var sequence = CompilerConstants.IntegerNotSet;
70 69
70 // See https://github.com/wixtoolset/issues/issues/6648. DifxApp is deprecated so warn the user.
71 this.Messaging.Write(WarningMessages.DeprecatedElement(sourceLineNumbers, node.Name.LocalName));
72
71 // check the number of times a Driver element has been nested under this Component element 73 // check the number of times a Driver element has been nested under this Component element
72 if (null != componentId) 74 if (null != componentId)
73 { 75 {