aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/BalErrors.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/BalErrors.cs')
-rw-r--r--src/wixext/BalErrors.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/wixext/BalErrors.cs b/src/wixext/BalErrors.cs
index 5591ae1d..bc0186c1 100644
--- a/src/wixext/BalErrors.cs
+++ b/src/wixext/BalErrors.cs
@@ -18,9 +18,14 @@ namespace WixToolset.Bal
18 return Message(sourceLineNumbers, Ids.BAFunctionsPayloadRequiredInUXContainer, "The BAFunctions DLL Payload element must be located inside the BootstrapperApplication container."); 18 return Message(sourceLineNumbers, Ids.BAFunctionsPayloadRequiredInUXContainer, "The BAFunctions DLL Payload element must be located inside the BootstrapperApplication container.");
19 } 19 }
20 20
21 public static Message MissingPrereq() 21 public static Message MissingDNCPrereq()
22 { 22 {
23 return Message(null, Ids.MissingPrereq, "There must be at least one PrereqPackage when using the ManagedBootstrapperApplicationHost.\nThis is typically done by using the WixNetFxExtension and referencing one of the NetFxAsPrereq package groups."); 23 return Message(null, Ids.MissingDNCPrereq, "There must be at least one PrereqPackage when using the DotNetCoreBootstrapperApplicationHost with SelfContainedDeployment set to \"no\".");
24 }
25
26 public static Message MissingMBAPrereq()
27 {
28 return Message(null, Ids.MissingMBAPrereq, "There must be at least one PrereqPackage when using the ManagedBootstrapperApplicationHost.\nThis is typically done by using the WixNetFxExtension and referencing one of the NetFxAsPrereq package groups.");
24 } 29 }
25 30
26 public static Message MultipleBAFunctions(SourceLineNumber sourceLineNumbers) 31 public static Message MultipleBAFunctions(SourceLineNumber sourceLineNumbers)
@@ -46,10 +51,11 @@ namespace WixToolset.Bal
46 public enum Ids 51 public enum Ids
47 { 52 {
48 AttributeRequiresPrereqPackage = 6801, 53 AttributeRequiresPrereqPackage = 6801,
49 MissingPrereq = 6802, 54 MissingMBAPrereq = 6802,
50 MultiplePrereqLicenses = 6803, 55 MultiplePrereqLicenses = 6803,
51 MultipleBAFunctions = 6804, 56 MultipleBAFunctions = 6804,
52 BAFunctionsPayloadRequiredInUXContainer = 6805, 57 BAFunctionsPayloadRequiredInUXContainer = 6805,
58 MissingDNCPrereq = 6806,
53 } 59 }
54 } 60 }
55} 61}