
Untitled
By: a guest on
May 18th, 2012 | syntax:
None | size: 0.59 KB | hits: 22 | expires: Never
Changing VS2010 environment variables for WIX
Source="$(env.CompanyName) contact.png"
<?if $(var.Configuration)="West"?>
<?define CompanyName="West Coast Office"?>
<?elif $(var.Configuration)="East"?>
<?define CompanyName="East Coast Office"?>
<?else?>
<?define CompanyName="Debugging purposes"?>
<?endif?>
Source="$(var.CompanyName) contact.png"
CompanyName=West Coast Office
Source="$(var.CompanyName) contact.png"
Solution Debug East West
------------------------------------------
Main Project Debug Release Release
Setup Project Debug East West