Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 18th, 2012  |  syntax: None  |  size: 0.59 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Changing VS2010 environment variables for WIX
  2. Source="$(env.CompanyName) contact.png"
  3.        
  4. <?if   $(var.Configuration)="West"?>
  5.   <?define CompanyName="West Coast Office"?>
  6. <?elif $(var.Configuration)="East"?>
  7.   <?define CompanyName="East Coast Office"?>
  8. <?else?>
  9.   <?define CompanyName="Debugging purposes"?>
  10. <?endif?>
  11.  
  12. Source="$(var.CompanyName) contact.png"
  13.        
  14. CompanyName=West Coast Office
  15.        
  16. Source="$(var.CompanyName) contact.png"
  17.        
  18. Solution       Debug    East     West
  19. ------------------------------------------
  20. Main Project   Debug    Release  Release
  21. Setup Project  Debug    East     West