aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2024-05-15 22:11:57 -0400
committerBob Arnson <github@bobs.org>2024-06-10 20:44:12 -0400
commit1a38763b97ce53fa99e1d16f739b93135698df41 (patch)
tree178605b56a73c52635c3b9c89178ea5e4567c9b0 /src/ext/Bal/wixext
parenteed1b5bbfb49d2425417bc342ecabe9edc206cdf (diff)
downloadwix-1a38763b97ce53fa99e1d16f739b93135698df41.tar.gz
wix-1a38763b97ce53fa99e1d16f739b93135698df41.tar.bz2
wix-1a38763b97ce53fa99e1d16f739b93135698df41.zip
Add a IUIBA edge-case test and clean up a bit.
Diffstat (limited to 'src/ext/Bal/wixext')
-rw-r--r--src/ext/Bal/wixext/BalErrors.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ext/Bal/wixext/BalErrors.cs b/src/ext/Bal/wixext/BalErrors.cs
index 4c719091..d32efe1e 100644
--- a/src/ext/Bal/wixext/BalErrors.cs
+++ b/src/ext/Bal/wixext/BalErrors.cs
@@ -43,11 +43,6 @@ namespace WixToolset.BootstrapperApplications
43 return Message(sourceLineNumbers, Ids.IuibaPrimaryPackageEnableFeatureSelection, "When using WixInternalUIBootstrapperApplication, primary packages must not have feature selection enabled because it interferes with the user selecting feature through the MSI UI."); 43 return Message(sourceLineNumbers, Ids.IuibaPrimaryPackageEnableFeatureSelection, "When using WixInternalUIBootstrapperApplication, primary packages must not have feature selection enabled because it interferes with the user selecting feature through the MSI UI.");
44 } 44 }
45 45
46 public static Message MissingDNCBAFactoryAssembly(SourceLineNumber sourceLineNumbers)
47 {
48 return Message(sourceLineNumbers, Ids.MissingDNCBAFactoryAssembly, "When using DotNetCoreBootstrapperApplicationHost, the Payload element for the BA's entry point DLL must have bal:BAFactoryAssembly=\"yes\".");
49 }
50
51 public static Message MissingPrereq(SourceLineNumber sourceLineNumbers) 46 public static Message MissingPrereq(SourceLineNumber sourceLineNumbers)
52 { 47 {
53 return Message(sourceLineNumbers, Ids.MissingPrereq, "There must be at least one package with bal:PrereqPackage=\"yes\" when using the bal:WixPrerequisiteBootstrapperApplication."); 48 return Message(sourceLineNumbers, Ids.MissingPrereq, "There must be at least one package with bal:PrereqPackage=\"yes\" when using the bal:WixPrerequisiteBootstrapperApplication.");