Reputation: 15925
I'm developing on WinXP Pro 32bit using VS2008 Pro. Do I need to create an installation/deployment project in any special way to get my application on install on a Win7 Pro 64Bit computer?
At the moment, the deployment setup project I have setup in my project only seems to install on WinXP and fails on Win7.
When setting up the installation project for WinXP, I set it up to automatically install .NET 3.5, Windows Report Writer, SQL Server Compact and Windows Installer automatically if not available on the computer.
Upvotes: 0
Views: 205
Reputation: 2651
You need to set TargetPlatform
to x64
in the deployment project properties.
Upvotes: 1