-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning when building two bundles in one setup #610
Labels
Comments
oleg-shilo
pushed a commit
that referenced
this issue
Mar 15, 2019
Very accurate problem description and cause analysis. :) |
oleg-shilo
pushed a commit
that referenced
this issue
Mar 19, 2019
* Added new XML injection extensions `WixProject.AddXml` and `WixProject.AddXmlElement` * Issue #608: Create Shortcut on Desktop to dotnet.exe * Issue #551: Cannot include extra .wxs as part of a bundle * Issue #610: Warning when building two bundles in one setup * Issue #604: Is it possible to suppress the "UAC prompt" text if UAC is not enabled? * Issue #606: Platform.x64 not marking some folders win64="yes" * Issue #599: Files creating empty folders on Destination (2) * Issue #599: Files creating empty folders on Destination * Added `WixEntity.ComponentCondition` to assist with cases when WiX element does not have condition (e.g. `RegistryKey`). Triggered by issue #593 * Added support for attribute namespaces during XML auto serialization with `WixObject.ToXElement()` * Issue #586: How to add bal:overridable for Variable with wix# * Issue #591: Code signing timestamping fails if old Windows SDK is installed * Issue #585: Question: Warning about auto-generated IDs * Issue #580: Wrong path to the AdminToolsFolder * Add MsuPackage Element * Fix Condition Net462_Installed, Net47_Installed, Net471_Installed, Net472_Installed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If during a setup project, a bundle is built and then some other project is built afterwards (eg. another bundle) the following warning is emitted:
This is because the bootstrapper compiler does not reset the WixEntity AutoId generation at the end of each build in BuildWxs() (like the MSI Compiler does):
project.ResetAutoIdGeneration(supressWarning: true);
Example setup:
The text was updated successfully, but these errors were encountered: