Stories recently tagged with 'Assembly'

How to Access Assembly Version Info in Silverlight(forums.silverlight.net)

submitted by crpietschmanncrpietschmann(11.3k) 1 year, 10 months ago

I need to access the AssemblyVersion info from my assembly, and I was going to use something like this: Assembly.GetExecutingAssembly().GetName().Version; But, I see that GetName() is [SECURITY CRITICAL]. How can I get a hold of a Version object?? read more...

add a comment |category: |Views: 27

tags: another

Combining Assemblies Using ILMerge(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 2 years, 6 months ago

When creating solutions that include multiple projects, Visual Studio creates an assembly for each project. This can lead to libraries that are complicated to use, needing many references. Using ILMerge, the assemblies can be combined into a single file. read more...

add a comment |category: |Views: 226

tags: another

How to tell if a .NET Assembly is debug or release(jamesewelch.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 5 months ago

Explains how to tell if a .NET Assembly is built for debug or release by using .NET Reflector and programmatically using System.Reflection. read more...

add a comment |category: |Views: 43

tags: another

Debugging Assembly Loading Errors(devlicio.us)

submitted by jimmy.sjimmy.s(330) 4 years, 7 months ago

There are situations sometimes when .NET loads wrong assembly or can't load one at all. Usually we can see TypeLoadException in that case. Assuming we have exception at all. This post describe how to debug assembly loading problems. read more...

add a comment |category: |Views: 51

tags: another

Unsigned Advantage(kentb.blogspot.com)

submitted by kentcbkentcb(140) 4 years, 8 months ago

Presents some interesting differences between the assembly code produced when performing some common arithmetic operations with signed and unsigned integers. read more...

add a comment |category: |Views: 0

tags: another

Graphical userinterface for Microsoft's Sandcastle(inchl.nl)

submitted by inchlinchl(40) 5 years, 5 months ago

I have been using Microsofts Sandcastle for some time now and it's xml-schemas have driven me nuts.... so I made a small userinterface for Sandcastle. The program is freeware and includes the following features: - Support for online MSDN-links. - Documenting of specified namespaces instead of entire assemblies. - Multiple outputtypes (website and/or .CHM-file). - Custom copyright line. - Custom company logo. - Custom product information. View my website for more information and a download-link: http://www.inchl.nl View generated output using SandcastleGUI: http://www.inchl.nl/help/ Kind regards, Stephan Smetsers stephansmetsers@hotmail.com read more...

add a comment |category: |Views: 19

tags: another

Assembly Viewer and Assembly Conflict Viewer in ASP.NET(c-sharpcorner.com)

submitted by dalzieldalziel(6230) 5 years, 6 months ago

A Web application which will show Assembly attributes and Conflicts using the Intermediate Language Disassembler (ILDASM) in .NET read more...

add a comment |category: |Views: 5

tags: another