0
votes
3answers
112 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
56 views
CorfFlags warning CF011 about strong name signed even after /force
Im trying to use Corflags to get PartCover running under x64. When I use:
CorFlags.exe PartCover.exe /32BIT+ /Force
i get:
corflags : warning CF011 : The specified file is strong name signed. Using …
3
votes
4answers
308 views
How to programatically set or clear the 32BIT flag?
When compiling, I always set it for Any CPU. However there are some customers that do not have a 64 bit version of a required binary, even when running on an x64 system. In these instances I have …
1
vote
2answers
498 views
Why doesn’t the corflags utility warn when marking x64 assemblies as x86?
If I set the platform flags of MyApp.exe to be x64
I still can run the corflags utilty like this:
corflags /32bit+ MyApp.exe
corflags will happily set the 32bit flag to 1.
Of course when I'll try …
2
votes
2answers
347 views
x64 .NET compilation / Process Explorer oddity
Apologies if any of what I'm about to say makes no sense or overlooks something obvious - my knowledge of CLR internals is spotty.
If I understand correctly, then if I just build a solution for …
