C# 클래스 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)
파일 보기 프로젝트 열기: fo-dicom/mdcm 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
CPUVersion CPUVersion
FrameworkVersion FrameworkVersion
StrongName bool

공개 메소드들

메소드 설명
FromFile ( string file ) : AssemblyDetails

Get the AssemblyDetails of a .NET 2.0+ assembly.

메소드 상세

FromFile() 공개 정적인 메소드

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

프로퍼티 상세

CPUVersion 공개적으로 프로퍼티

The CPUVersion the assembly was compiled with.
public CPUVersion CPUVersion
리턴 CPUVersion

FrameworkVersion 공개적으로 프로퍼티

The .NET Framework required for the assembly.
public FrameworkVersion FrameworkVersion
리턴 FrameworkVersion

StrongName 공개적으로 프로퍼티

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