diff options
Diffstat (limited to 'src/ext/Bal/wixext/BalErrors.cs')
-rw-r--r-- | src/ext/Bal/wixext/BalErrors.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ext/Bal/wixext/BalErrors.cs b/src/ext/Bal/wixext/BalErrors.cs index cde37143..2548b279 100644 --- a/src/ext/Bal/wixext/BalErrors.cs +++ b/src/ext/Bal/wixext/BalErrors.cs | |||
@@ -43,6 +43,11 @@ namespace WixToolset.Bal | |||
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, "The BA's entry point DLL must have bal:BAFactoryAssembly=\"yes\" when using the DotNetCoreBootstrapperApplicationHost."); | ||
49 | } | ||
50 | |||
46 | public static Message MissingDNCPrereq() | 51 | public static Message MissingDNCPrereq() |
47 | { | 52 | { |
48 | return Message(null, Ids.MissingDNCPrereq, "There must be at least one package with bal:PrereqPackage=\"yes\" when using the DotNetCoreBootstrapperApplicationHost with SelfContainedDeployment set to \"no\"."); | 53 | return Message(null, Ids.MissingDNCPrereq, "There must be at least one package with bal:PrereqPackage=\"yes\" when using the DotNetCoreBootstrapperApplicationHost with SelfContainedDeployment set to \"no\"."); |
@@ -116,6 +121,7 @@ namespace WixToolset.Bal | |||
116 | IuibaPrimaryPackageEnableFeatureSelection = 6815, | 121 | IuibaPrimaryPackageEnableFeatureSelection = 6815, |
117 | OverridableVariableCollision = 6816, | 122 | OverridableVariableCollision = 6816, |
118 | OverridableVariableCollision2 = 6817, | 123 | OverridableVariableCollision2 = 6817, |
124 | MissingDNCBAFactoryAssembly = 6818, | ||
119 | } | 125 | } |
120 | } | 126 | } |
121 | } | 127 | } |