diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Patch.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Patch.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Patch.cs b/src/WixToolset.Core.WindowsInstaller/Patch.cs index 6549e830..42cd7152 100644 --- a/src/WixToolset.Core.WindowsInstaller/Patch.cs +++ b/src/WixToolset.Core.WindowsInstaller/Patch.cs | |||
@@ -1,5 +1,7 @@ | |||
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 | #if DELETE | ||
4 | |||
3 | namespace WixToolset.Data | 5 | namespace WixToolset.Data |
4 | { | 6 | { |
5 | using System; | 7 | using System; |
@@ -50,7 +52,6 @@ namespace WixToolset.Data | |||
50 | [SuppressMessage("Microsoft.Globalization", "CA1303:DoNotPassLiteralsAsLocalizedParameters", MessageId = "System.InvalidOperationException.#ctor(System.String)")] | 52 | [SuppressMessage("Microsoft.Globalization", "CA1303:DoNotPassLiteralsAsLocalizedParameters", MessageId = "System.InvalidOperationException.#ctor(System.String)")] |
51 | public void AttachTransforms(List<PatchTransform> transforms) | 53 | public void AttachTransforms(List<PatchTransform> transforms) |
52 | { | 54 | { |
53 | #if REVISIT_FOR_PATCHING | ||
54 | // Track if at least one transform gets attached. | 55 | // Track if at least one transform gets attached. |
55 | bool attachedTransform = false; | 56 | bool attachedTransform = false; |
56 | 57 | ||
@@ -1229,8 +1230,10 @@ namespace WixToolset.Data | |||
1229 | } | 1230 | } |
1230 | 1231 | ||
1231 | return pairedTransform; | 1232 | return pairedTransform; |
1232 | #endif | 1233 | |
1233 | throw new NotImplementedException(); | 1234 | throw new NotImplementedException(); |
1234 | } | 1235 | } |
1235 | } | 1236 | } |
1236 | } | 1237 | } |
1238 | |||
1239 | #endif | ||