Passing multiple values to Wix DefineConstants property with MSBuild

后端 未结 12 1995
萌比男神i
萌比男神i 2020-12-08 05:42

I\'m currently integrating my Wix projects in MSBuild. It is necessary for me to pass multiple values to the Wix project. One value will work (ProductVersion in the sample b

12条回答
  •  长情又很酷
    2020-12-08 06:03

    The following lines worked when I included them in a .wixproj file (using Visual Studio 2010).

    
      Const1=Value1;Const2=Value2;Const3=Value3
    
    

提交回复
热议问题