The anycpu tag has no wiki summary.
11
votes
1answer
337 views
Why is an AnyCPU app running as x86 on a x64 machine
I have a AnyCPU app installed to Program Files (x86). On one Win7 x64 machine it runs as x64 as expected while on another Win7 x64 machine, it runs as x86!!
How can this be? I expected it to run as ...
9
votes
2answers
1k views
C# compiling for 32/64 bit, or for any cpu? [closed]
Possible Duplicate:
Visual Studio “Any CPU” target
I've noticed that when compiling C# code in VS, there's typically options for compiling for 32/64 bit systems, and there's ...
7
votes
3answers
7k views
Change target CPU settings in Visual Studio 2010 Express
I wish to change the target CPU settings from "Any CPU" to "x86" in Visual Studio 2010 .
I read on another website that i need to do the following:
Go to the startup project of your program.
Open ...
5
votes
2answers
91 views
.Net2 assemblies hosted in .Net4 app perform better in x86 than in AnyCpu mode?
I have a .Net4 WinForms app that references 3rd party .Net2 assemblies, which contain graphics-heavy visual controls. I've noticed a huge improvement in app's visual performance when I accidentally ...
4
votes
1answer
70 views
does the x86 and x64 options mean anything to a windows phone 7 app?
As this screen shot shows, we can still choose x86, x64 and anycpu for a windows phone 7 app.
But does it make any difference to the wp7 app?
Thanks
4
votes
2answers
348 views
C# Solution, can all projects target AnyCPU except one whic has to be x86?
We have a large solution comprising of many different libraries. We have just migrated to development on a 64bit system and this has us thinking about what platform target we should specify for each ...
3
votes
2answers
245 views
How to add x64 (or Any CPU) as a build option in Visual Studio 2010 (From Console app to Class library)
Initially, I created a console app using Mass Transit as my service bus. Recently, I switched to NServiceBus, which doesn't require you to make a console app, but a class library instead. I simply ...
2
votes
1answer
183 views
C# AnyCPU and Read/WriteProcessMemory
My C# program is compiled with AnyCPU option and i am using P/Invoke to call native apis this way:
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool ...
1
vote
1answer
65 views
Assembly.Invoke() conflicts with x86 and AnyCPU
I'm using Assembly.Load() and then EntryPoint.Invoke(null, null) in order to run a .NET assembly in memory. This works, unless if the host process is x86 and the executed assembly is AnyCPU. In this ...
1
vote
1answer
262 views
Including 32- and 64-bit merge modules in one WiX installer
I'm writing merge modules for a project I'm working on.
I build two merge modules, one for 32-bit and one for 64-bit. I want to include them in a WiX installer but it tells me I can't:
error ...
1
vote
1answer
280 views
How I can re-run my C# AnyCPU application as 64 bit, if it's running as 32 bit (WOW64)?
I develop my application for 32 bit and 64 bit Windows.
I have a problem: If my application is launched from a 32-bit process on 64-bit OS, my application will run as 32-bit.
How I can re-run my C# ...
1
vote
1answer
279 views
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 ...
1
vote
1answer
203 views
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:
...
0
votes
3answers
55 views
Platform target x86 and Any CPU
I have small problem with simple code. This code is working properly on "x86" mode but not on "Any CPU" mode, maybe it is possible to run one class on "x86" and another class on "Any CPU" mode? Code:
...
0
votes
1answer
43 views
What types and versions of .NET libraries should I ship with my development tool?
I am working on a commercial .NET developer library that I hope to go public with and I want to know what versions of the .DLL I should provide out of the box to the end user (developers).
The .DLL ...
0
votes
1answer
69 views
Possible reasons for assembly failing to load on production system?
Problem
Assembly is loaded just fine in development, fail to be loaded on production.
Details
The assemblies quickfix_net.dll and quickfix_net_messages.dll (Quickfix.NET API) are failing to load on ...
0
votes
0answers
45 views
Problem with compiling my WinForm Application and accessing to registry and connecting to MSDE
I am working on a WinForm Application using Visual Studio 2008 (.Net 3.5) and I want to create and access a key on registry in this path : [HKEY_LOCAL_MACHINE\SOFTWARE\MyCompany\MyApplication] :
Dim ...
0
votes
1answer
206 views
.NET Software running on x64 but compiled on x86 for Any CPU (VS2008)
I have a problem, whereby I’m getting runtime errors with a compiled program. This works fine in the development environment (x86), but not on the production environment (which is x64).
I found ...
0
votes
1answer
154 views
StackFrame.GetFileLineNumber() behaviour varies based on assembly Platform and Optimisation flags
i'm trying to understand a problem and although I've read a lot, I can't seem to find any resources explaining this odd combination.
After a bit of experimentation I've found that combinations of ...
0
votes
1answer
38 views
Changing Platform of Existing DLL
I have a 3rd DLL that is built for "Any CPU". It needs (for a specific reason) to be rebuilt for x86. I have no access to the existing source code, but could via Reflector, decompile and recompile ...