Quantcast
Channel: wixsharp Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1354

New Post: Adding extension items

$
0
0
On a completely unrelated note, you can simplify your WixSourceGenerated if you use Wix# XML Fluent extensions:
project.WixSourceGenerated += (document) =>
{
    document.Select("Wix/Bundle")
            .FindSingle("WixStandardBootstrapperApplication")
            .SetAttribute("ThemeFile", @"res\RtfLargeTheme.xml");          
}
And starting with the next release I enabled support for AttributeDefinition in LicenseBootstrapperApplication. Thus you will be able to set the attribute even without using WixSourceGenerated:
Application = new LicenseBootstrapperApplication()
              {
                  LicensePath = @"res\license.rtf", 
                  LogoFile = @"res\Logo.png",
                  AttributesDefinition = @"ThemeFile=res\RtfLargeTheme.xml"
              };

Viewing all articles
Browse latest Browse all 1354

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>