assemblies - .NET - How can I tell if a dll is a 32bit or 64bit version of that dll -
we have project in our application builds in 32bit or 64bit version of dll depending on processor architecture on machine built on, facilitate testing.
i can predict dll used on given machine, have several devs, 64bit machines, 32bit machines, , want able check if builds put live server have gone 32bit version of dll or 64bit version of dll.
checking properties of dll doesn't give sort of information. there way of getting it?
thanks
i'm not sure if there way can see wether or not assembly compiled x64 / x86. can use corflags specify though. msdn page
also coulduse this code: module.getpekind method
Comments
Post a Comment