Manifest.ResolveFiles Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.