Hi,

Just tried to create in VS2010 (Ultimate) a new setup project (CTRL +
Shift +N) > Windows Installer XML > Setup Project > OK. Afterwards I
tried to build a x64 solution with no changes to the initial WiX
source code by starting the "Configuration Manager" and click under
"Project contexts" on Platform x86 > New > New platform = x64 (Copy
settings from x86 [x] Create new solution platforms > Build [X] >
Close. Afterwards when building the solution (CTRL + Shift + B) only
the x86 solution is being built.

To solve the issue I closed VS2010 and manually edited in the solution file

        GlobalSection(ProjectConfigurationPlatforms) = postSolution
                {SOME-GENERATED-GUID}.Debug|x64.ActiveCfg = Debug|x86
                {SOME-GENERATED-GUID}.Debug|x64.Build.0 = Debug|x86
                {SOME-GENERATED-GUID}.Debug|x86.ActiveCfg = Debug|x86
                {SOME-GENERATED-GUID}.Debug|x86.Build.0 = Debug|x86
                {SOME-GENERATED-GUID}.Release|x64.ActiveCfg = Release|x86
                {SOME-GENERATED-GUID}.Release|x86.ActiveCfg = Release|x86
                {SOME-GENERATED-GUID}.Release|x86.Build.0 = Release|x86
        EndGlobalSection

to

        GlobalSection(ProjectConfigurationPlatforms) = postSolution
                {SOME-GENERATED-GUID}.Debug|x64.ActiveCfg = Debug|x64
                {SOME-GENERATED-GUID}.Debug|x64.Build.0 = Debug|x64
                {SOME-GENERATED-GUID}.Debug|x86.ActiveCfg = Debug|x86
                {SOME-GENERATED-GUID}.Debug|x86.Build.0 = Debug|x86
                {SOME-GENERATED-GUID}.Release|x64.ActiveCfg = Release|x64
                {SOME-GENERATED-GUID}.Release|x86.ActiveCfg = Release|x86
                {SOME-GENERATED-GUID}.Release|x86.Build.0 = Release|x86
        EndGlobalSection

A similar issue is discussed in
http://stackoverflow.com/questions/4261307/build-x64-wix-project-using-visual-studio-2010/4378055#4378055

Is it a bug ?
Tobias

------------------------------------------------------------------------------
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to