anycpu

Setting CPU target to x86 on .NET 2.0 project adds .NET 3.5 dependencies.

I have a project in VS2008 that targets .NET 2.0 framework. It was original set to build for AnyCPU. I changed it to x86 and for whatever reason, VS adds the following lines to .csproj: <ItemGroup> <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> <Visible>False</Visible> <ProductName>.NET Framework Client Profi...

How can I use a VS Setup Project to install "Any CPU" code properly on either 32-bit or 64-bit Windows?

We have a large suite of products that include: Desktop apps written in VB6. Desktop apps written in .NET. Windows services written in .NET. ASP.NET web apps written in .NET. ASMX and WCF services written in .NET. All the .NET code is written in VS2008, targeting .NET 3.5 and "Any CPU". We could target specific processors, but would ...