C# Class Dicom.Utility.AssemblyDetails

AssemblyDetails is used in the update builder, wyBuild (http://wyday.com/wybuild/), to automagically detect .NET assemblies properties, namely: - if they are compiled with a Strong Name, - CPUVersion the assembly was compiled as, - .NET Framework the assembly was compiled for (.NET 2.0 or 4.0)
Show file Open project: fo-dicom/mdcm Class Usage Examples

Public Properties

Property Type Description
CPUVersion CPUVersion
FrameworkVersion FrameworkVersion
StrongName bool

Public Methods

Method Description
FromFile ( string file ) : AssemblyDetails

Get the AssemblyDetails of a .NET 2.0+ assembly.

Method Details

FromFile() public static method

Get the AssemblyDetails of a .NET 2.0+ assembly.
public static FromFile ( string file ) : AssemblyDetails
file string The file to get the AssemblyDetails of.
return AssemblyDetails

Property Details

CPUVersion public property

The CPUVersion the assembly was compiled with.
public CPUVersion CPUVersion
return CPUVersion

FrameworkVersion public property

The .NET Framework required for the assembly.
public FrameworkVersion FrameworkVersion
return FrameworkVersion

StrongName public property

True if the assembly has a strong name. (Neccessary for GAC installations)
public bool StrongName
return bool