Tagged Questions

2
votes
1answer
110 views

How to generate a 32bit only Managed C++ Assembly

I need to compile a DLL in Managed C++ in Visual Studio 2005. I want it with 32Bit corflag on. See http://illuminatedcomputing.com/blog/?p=117 for reference. By default, I choose Win32 platform ...
1
vote
3answers
822 views

How to detemine (by code) the assembly corflags?

I need to write a CorFlags-like application. If I have a path to assembly file, how to I read its CorFlags? I specifically need to know if the assembly is Any-CPU or x86 only I want to avoid loading ...
0
votes
1answer
141 views

Running a 32-bit window service which loads a 32-bit dll as a 64-bit service

Here's the situation - A window service which I am coding uses Linq2Excel, which insist the invoking application to be complied against x86. However, the window service is to be installed on a ...