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)
Afficher le fichier Open project: fo-dicom/mdcm Class Usage Examples

Méthodes publiques

Свойство Type Description
CPUVersion CPUVersion
FrameworkVersion FrameworkVersion
StrongName bool

Méthodes publiques

Méthode Description
FromFile ( string file ) : AssemblyDetails

Get the AssemblyDetails of a .NET 2.0+ assembly.

Method Details

FromFile() public static méthode

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

Property Details

CPUVersion public_oe property

The CPUVersion the assembly was compiled with.
public CPUVersion CPUVersion
Résultat CPUVersion

FrameworkVersion public_oe property

The .NET Framework required for the assembly.
public FrameworkVersion FrameworkVersion
Résultat FrameworkVersion

StrongName public_oe property

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