Tagged Questions

The CorFlags Conversion Tool is part of Miscrosoft's .NET Framework that allows users to view and configure the CorFlags section of an assembly header, which includes information about 32-bit and 64-bit compatibility of the assembly. Use this tag for questions regarding the tool or the CorFlags assembly header secton.

learn more… | top users | synonyms

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) ...
4
votes
2answers
1k views

How to force .NET application to run in 32bit mode

I am trying to run my .NET 3.5 WinForms application on a Win7 x64. The application uses NHibernate and the System.Data.OracleClient to access an Oracle database. The Oracle client is 32bit. When ...
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
104 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 ...
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
1answer
111 views

Problem with corflags on interop library after VS upgrade

I converted my visual studio solution from 2008 to 2010. A project has a reference to ShDocVw. When I run the program I get a BadImageFormatException. Googling led me to check the interop library ...
1
vote
1answer
2k views

Where CorFlags.exe? (.Net Framework Tools)

Where can i find CorFlags.exe tool? I made full hdd search, but it was not found. I have: .net framework 4.0, Visual C# 2010 Express, Visual C++ 2010 Express. OS is Windows 7 Ultimate 32 bit; Thank ...
1
vote
2answers
1k views

Trying to run corflags from TFS Build 2010

I am using an InvokeProcess activity in TFS 2010 to try and run the corflags application on a built exe. C:\Builds\4\testing\Sources\BuildAssets\corflags.exe ...
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
0answers
33 views

CCNET+nUnit build fails when 32 bits

While running the build for 64bits release the nunit tests always work, but when running it 32bits one test always fails only on the build server and never in the developers machines Does anybody know ...
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 ...
0
votes
1answer
2k views

NCover on 64 bit - CorFlags fix - corflags : error CF008 : The specified file does not have a valid managed header

I'm trying to apply a fix to allow NCover v1.5.5 to run on Windows Server 2008 X64 via my TeamCity Continuous Integration server as outlined on this blog: ...