Share via


Manifest.ResolveFiles Method

Definition

Locates all specified assembly and file references.

Overloads

ResolveFiles(String[])

Locates all specified assembly and file references by searching in the specified directories. The ___location of each referenced assembly and file is required for hash computation and assembly identity resolution. Any resulting errors or warnings are reported in the OutputMessages collection.

ResolveFiles()

Locates all specified assembly and file references by searching in the same directory as the loaded manifest, or in the current directory. The ___location of each referenced assembly and file is required for hash computation and assembly identity resolution. Any resulting errors or warnings are reported in the OutputMessages collection.

ResolveFiles(String[])

Source:
Manifest.cs

Locates all specified assembly and file references by searching in the specified directories. The ___location of each referenced assembly and file is required for hash computation and assembly identity resolution. Any resulting errors or warnings are reported in the OutputMessages collection.

public:
 void ResolveFiles(cli::array <System::String ^> ^ searchPaths);
public void ResolveFiles(string[] searchPaths);
member this.ResolveFiles : string[] -> unit
Public Sub ResolveFiles (searchPaths As String())

Parameters

searchPaths
String[]

An array of strings specify directories to search.

Remarks

The ___location of each referenced assembly and file is required for hash computation and assembly identity resolution. Any resulting errors or warnings are reported in the OutputMessageCollection object.

Applies to

ResolveFiles()

Source:
Manifest.cs

Locates all specified assembly and file references by searching in the same directory as the loaded manifest, or in the current directory. The ___location of each referenced assembly and file is required for hash computation and assembly identity resolution. Any resulting errors or warnings are reported in the OutputMessages collection.

public:
 void ResolveFiles();
public void ResolveFiles();
member this.ResolveFiles : unit -> unit
Public Sub ResolveFiles ()

Remarks

The ___location of each referenced assembly and file is required for hash computation and assembly identity resolution. Any resulting errors or warnings are reported in the OutputMessageCollection object.

Applies to