diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-01-24 15:27:20 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-02-05 16:15:47 -0800 |
| commit | 6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d (patch) | |
| tree | c717333cd10d5592e59dfb898b391275bba1f389 /src/WixToolset.Core.WindowsInstaller/PatchTransform.cs | |
| parent | 6e2e67ab55c75f4655397588c0dcc64f50d22f92 (diff) | |
| download | wix-6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d.tar.gz wix-6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d.tar.bz2 wix-6ff680e386b1543ad1a58d1b1d465ce8aa20bc7d.zip | |
Start on new patch infrastructure
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/PatchTransform.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/PatchTransform.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/PatchTransform.cs b/src/WixToolset.Core.WindowsInstaller/PatchTransform.cs index 0dc1e874..f58ca53f 100644 --- a/src/WixToolset.Core.WindowsInstaller/PatchTransform.cs +++ b/src/WixToolset.Core.WindowsInstaller/PatchTransform.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 | 5 | namespace WixToolset |
| 4 | { | 6 | { |
| 5 | using System; | 7 | using System; |
| @@ -50,7 +52,6 @@ namespace WixToolset | |||
| 50 | /// </summary> | 52 | /// </summary> |
| 51 | public void Validate() | 53 | public void Validate() |
| 52 | { | 54 | { |
| 53 | #if REVISIT_FOR_PATCHING | ||
| 54 | // Changing the ProdocutCode in a patch transform is not recommended. | 55 | // Changing the ProdocutCode in a patch transform is not recommended. |
| 55 | Table propertyTable = this.Transform.Tables["Property"]; | 56 | Table propertyTable = this.Transform.Tables["Property"]; |
| 56 | if (null != propertyTable) | 57 | if (null != propertyTable) |
| @@ -261,8 +262,10 @@ namespace WixToolset | |||
| 261 | } | 262 | } |
| 262 | } | 263 | } |
| 263 | } | 264 | } |
| 264 | #endif | 265 | |
| 265 | throw new NotImplementedException(); | 266 | throw new NotImplementedException(); |
| 266 | } | 267 | } |
| 267 | } | 268 | } |
| 268 | } | 269 | } |
| 270 | |||
| 271 | #endif \ No newline at end of file | ||
