CompilationLibrary.ResolveReferencePaths Method

Definition

Overloads

ResolveReferencePaths()

Gets the collection of absolute reference paths for this library.

ResolveReferencePaths(ICompilationAssemblyResolver[])

Gets the collection of absolute reference paths for this library using specified custom resolvers.

ResolveReferencePaths()

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

Gets the collection of absolute reference paths for this library.

public:
 System::Collections::Generic::IEnumerable<System::String ^> ^ ResolveReferencePaths();
public System.Collections.Generic.IEnumerable<string> ResolveReferencePaths ();
member this.ResolveReferencePaths : unit -> seq<string>
Public Function ResolveReferencePaths () As IEnumerable(Of String)

Returns

The collection of absolute reference paths for this library.

Exceptions

Library location is not found.

Applies to

ResolveReferencePaths(ICompilationAssemblyResolver[])

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

Gets the collection of absolute reference paths for this library using specified custom resolvers.

public:
 System::Collections::Generic::IEnumerable<System::String ^> ^ ResolveReferencePaths(... cli::array <Microsoft::Extensions::DependencyModel::Resolution::ICompilationAssemblyResolver ^> ^ customResolvers);
public System.Collections.Generic.IEnumerable<string> ResolveReferencePaths (params Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[] customResolvers);
member this.ResolveReferencePaths : Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[] -> seq<string>
Public Function ResolveReferencePaths (ParamArray customResolvers As ICompilationAssemblyResolver()) As IEnumerable(Of String)

Parameters

customResolvers
ICompilationAssemblyResolver[]

The array of custom assembly resolvers.

Returns

The collection of absolute reference paths for this library.

Exceptions

Library location is not found.

Applies to