다음을 통해 공유


CompilationLibrary 생성자

정의

오버로드

CompilationLibrary(String, String, String, String, IEnumerable<String>, IEnumerable<Dependency>, Boolean)

지정된 라이브러리 속성을 사용하여 CompilationLibrary 클래스의 새 인스턴스를 초기화합니다.

CompilationLibrary(String, String, String, String, IEnumerable<String>, IEnumerable<Dependency>, Boolean, String, String)

지정된 라이브러리 속성 및 경로를 사용하여 CompilationLibrary 클래스의 새 인스턴스를 초기화합니다.

CompilationLibrary(String, String, String, String, IEnumerable<String>, IEnumerable<Dependency>, Boolean)

Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs

지정된 라이브러리 속성을 사용하여 CompilationLibrary 클래스의 새 인스턴스를 초기화합니다.

public:
 CompilationLibrary(System::String ^ type, System::String ^ name, System::String ^ version, System::String ^ hash, System::Collections::Generic::IEnumerable<System::String ^> ^ assemblies, System::Collections::Generic::IEnumerable<Microsoft::Extensions::DependencyModel::Dependency> ^ dependencies, bool serviceable);
public CompilationLibrary (string type, string name, string version, string? hash, System.Collections.Generic.IEnumerable<string> assemblies, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyModel.Dependency> dependencies, bool serviceable);
new Microsoft.Extensions.DependencyModel.CompilationLibrary : string * string * string * string * seq<string> * seq<Microsoft.Extensions.DependencyModel.Dependency> * bool -> Microsoft.Extensions.DependencyModel.CompilationLibrary
Public Sub New (type As String, name As String, version As String, hash As String, assemblies As IEnumerable(Of String), dependencies As IEnumerable(Of Dependency), serviceable As Boolean)

매개 변수

type
String

라이브러리의 형식입니다.

name
String

라이브러리의 이름입니다.

version
String

라이브러리의 버전입니다.

hash
String

라이브러리 패키지의 해시입니다.

assemblies
IEnumerable<String>

라이브러리의 어셈블리입니다.

dependencies
IEnumerable<Dependency>

라이브러리의 종속성입니다.

serviceable
Boolean

라이브러리를 서비스할 수 있는지 여부입니다.

예외

type또는 name또는 versionnull 또는 빈 문자열입니다.

dependencies 또는 assembliesnull.

적용 대상

CompilationLibrary(String, String, String, String, IEnumerable<String>, IEnumerable<Dependency>, Boolean, String, String)

Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs
Source:
CompilationLibrary.cs

지정된 라이브러리 속성 및 경로를 사용하여 CompilationLibrary 클래스의 새 인스턴스를 초기화합니다.

public:
 CompilationLibrary(System::String ^ type, System::String ^ name, System::String ^ version, System::String ^ hash, System::Collections::Generic::IEnumerable<System::String ^> ^ assemblies, System::Collections::Generic::IEnumerable<Microsoft::Extensions::DependencyModel::Dependency> ^ dependencies, bool serviceable, System::String ^ path, System::String ^ hashPath);
public CompilationLibrary (string type, string name, string version, string? hash, System.Collections.Generic.IEnumerable<string> assemblies, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyModel.Dependency> dependencies, bool serviceable, string? path, string? hashPath);
new Microsoft.Extensions.DependencyModel.CompilationLibrary : string * string * string * string * seq<string> * seq<Microsoft.Extensions.DependencyModel.Dependency> * bool * string * string -> Microsoft.Extensions.DependencyModel.CompilationLibrary
Public Sub New (type As String, name As String, version As String, hash As String, assemblies As IEnumerable(Of String), dependencies As IEnumerable(Of Dependency), serviceable As Boolean, path As String, hashPath As String)

매개 변수

type
String

라이브러리의 형식입니다.

name
String

라이브러리의 이름입니다.

version
String

라이브러리의 버전입니다.

hash
String

라이브러리 패키지의 해시입니다.

assemblies
IEnumerable<String>

라이브러리의 어셈블리입니다.

dependencies
IEnumerable<Dependency>

라이브러리의 종속성입니다.

serviceable
Boolean

라이브러리를 서비스할 수 있는지 여부입니다.

path
String

라이브러리 패키지의 경로입니다.

hashPath
String

라이브러리 패키지의 해시 경로입니다.

예외

type또는 name또는 versionnull 또는 빈 문자열입니다.

dependencies 또는 assembliesnull.

적용 대상