From 24e8f28dc9bea0a72a82abc6cafebe2364c94ef1 Mon Sep 17 00:00:00 2001 From: Rob Mensching <rob@firegiant.com> Date: Mon, 7 Feb 2022 21:28:07 -0800 Subject: Make validation independent of the build command In MSBuild this adds a new WindowsInstallerValidation target that automatically runs validation after a successful build. From the command-line the "wix msi" command gets a "validate" subcommand that will validate an MSI or MSM file. --- src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/api') diff --git a/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs b/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs index d0c65683..671da292 100644 --- a/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs +++ b/src/api/wix/WixToolset.Extensibility/Data/IBindContext.cs @@ -52,11 +52,6 @@ namespace WixToolset.Extensibility.Data /// </summary> IReadOnlyCollection<IFileSystemExtension> FileSystemExtensions { get; set; } - /// <summary> - /// Set of ICEs to execute. - /// </summary> - IReadOnlyCollection<string> Ices { get; set; } - /// <summary> /// Intermedaite folder. /// </summary> @@ -97,16 +92,6 @@ namespace WixToolset.Extensibility.Data /// </summary> int? ResolvedLcid { get; set; } - /// <summary> - /// Set of ICEs to skip. - /// </summary> - IReadOnlyCollection<string> SuppressIces { get; set; } - - /// <summary> - /// Skip all ICEs. - /// </summary> - bool SuppressValidation { get; set; } - /// <summary> /// Skip creation of output. /// </summary> -- cgit v1.2.3-55-g6feb