Tagged Questions
12
votes
4answers
27k views
Where should I download corflags.exe from?
I'm running Windows Server 2008 64-bit "workstation" and would like to get corflags.exe. Which SDK do I need to download?
Edit:
I know about .NET Framework 2.0 Software Development Kit (SDK) (x64) ...
3
votes
1answer
406 views
what's the difference between PE32+ and PE32
when running Corflags on some dll, some show as PE32 and some show as PE32+. I am wondering what's the difference?
3
votes
4answers
1k 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 ...
3
votes
2answers
796 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 ...
2
votes
1answer
987 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 ...
1
vote
3answers
807 views
PartCover 2.5.3 win 7 x64
Could you tell me how you got PartCover running with VS2008 and win 7 x64? Based on this post How do I run PartCover in x64 windows, I ran
c:\Program Files (x86)\Gubka Bob\PartCover .NET ...
1
vote
0answers
139 views
Why is a .NET x86 windows service not displayed with *32 in Task Manager?
I created a dummy windows service using .net 3.5. The service has been compiled for x86 explicitly (32BIT corflag is set).
Process Explorer from SysInternals correctly identifies the process as a ...
1
vote
3answers
793 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 ...
1
vote
2answers
1k 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 ...
0
votes
1answer
217 views
Windows 7 x64 Edition and Visual Studio 2010 dll reference
I used to use Visual Studio 2008. Then I decided to take Windows 7 x64 and Visual Studio 2010 to use new IDE features inside of the our development cycle etc.
One of our projects is using ...
0
votes
1answer
121 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 ...
0
votes
1answer
163 views
Does ILOnly = 0 mean C++/CLI?
Does ILOnly=0 when using corflags means the assembly is built using C++/CLI?
0
votes
1answer
338 views
Understanding assembly header with corFlags (why my assembly loads in 32bit address space?)
I've found a fair bit of information related to how a .NET assembly should load based on the flags set in the assembly header.
Pages such as ...