Why should you remove unnecessary C# using directives?
For example, I rarely need: using System.Text; but it’s always there by default. I assume the application will use more memory if your … Read more
For example, I rarely need: using System.Text; but it’s always there by default. I assume the application will use more memory if your … Read more
I’ve added a weakly named assembly to my Visual Studio 2005 project (which is strongly named). I’m now getting the error: “Referenced assembly ‘xxxxxxxx’ does … Read more
I’ve got an arbitrary list of .NET assemblies. I need to programmatically check if each DLL was built for x86 (as opposed to … Read more
In AssemblyInfo there are two assembly versions: AssemblyVersion: Specify the version of the assembly being attributed. AssemblyFileVersion: Instructs a compiler to use a … Read more
How do I enable assembly bind failure logging (Fusion) in .NET? 13 s 13 Add the following values to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion Add: DWORD ForceLog … Read more
There are three assembly version attributes. What are differences? Is it ok if I use AssemblyVersion and ignore the rest? MSDN says: AssemblyVersion: … Read more