diff options
Diffstat (limited to 'src/wixext/VSDecompiler.cs')
-rw-r--r-- | src/wixext/VSDecompiler.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/wixext/VSDecompiler.cs b/src/wixext/VSDecompiler.cs index bfa0670c..08dc364a 100644 --- a/src/wixext/VSDecompiler.cs +++ b/src/wixext/VSDecompiler.cs | |||
@@ -1,7 +1,8 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | namespace WixToolset.Extensions | 3 | namespace WixToolset.VisualStudio |
4 | { | 4 | { |
5 | #if TODO_CONSIDER_DECOMPILER | ||
5 | using System; | 6 | using System; |
6 | using System.Collections; | 7 | using System.Collections; |
7 | using System.Diagnostics; | 8 | using System.Diagnostics; |
@@ -104,7 +105,7 @@ namespace WixToolset.Extensions | |||
104 | { | 105 | { |
105 | helpFile.SampleLocation = (string)row[7]; | 106 | helpFile.SampleLocation = (string)row[7]; |
106 | } | 107 | } |
107 | 108 | ||
108 | if (this.Core.RootElement is Wix.Module) | 109 | if (this.Core.RootElement is Wix.Module) |
109 | { | 110 | { |
110 | helpFile.SuppressCustomActions = VS.YesNoType.yes; | 111 | helpFile.SuppressCustomActions = VS.YesNoType.yes; |
@@ -270,7 +271,7 @@ namespace WixToolset.Extensions | |||
270 | 271 | ||
271 | //we cannot do this work because we cannot get the FeatureComponent table | 272 | //we cannot do this work because we cannot get the FeatureComponent table |
272 | //plugCollectionInto.TargetFeature = DecompileHelpComponents(); | 273 | //plugCollectionInto.TargetFeature = DecompileHelpComponents(); |
273 | 274 | ||
274 | VS.HelpCollection helpCollection = (VS.HelpCollection)this.Core.GetIndexedElement("HelpNamespace", (string)row[0]); | 275 | VS.HelpCollection helpCollection = (VS.HelpCollection)this.Core.GetIndexedElement("HelpNamespace", (string)row[0]); |
275 | if (null != helpCollection) | 276 | if (null != helpCollection) |
276 | { | 277 | { |
@@ -293,4 +294,5 @@ namespace WixToolset.Extensions | |||
293 | // return String.Empty; | 294 | // return String.Empty; |
294 | //} | 295 | //} |
295 | } | 296 | } |
297 | #endif | ||
296 | } | 298 | } |