IVsDesignTimeAssemblyResolution::ResolveAssemblyPathInTargetFx Method (array<String^>^, UInt32, array<VsResolvedAssemblyPath>^, UInt32)
Visual Studio 2015
Resolves the assembly paths in the target .NET Framework.
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
int ResolveAssemblyPathInTargetFx( array<String^>^ prgAssemblySpecs, unsigned int cAssembliesToResolve, array<VsResolvedAssemblyPath>^ prgResolvedAssemblyPaths, [OutAttribute] unsigned int% pcResolvedAssemblyPaths )
Parameters
- prgAssemblySpecs
-
Type:
array<System::String^>^
The list of assembly names that need to be resolved.
- cAssembliesToResolve
-
Type:
System::UInt32
The number of assembly names passed in prgAssemblySpecs.
- prgResolvedAssemblyPaths
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::VsResolvedAssemblyPath>^
[in, out] The resolved assembly reference paths. The caller needs to pre-allocate this array for the number of assemblies to resolve (cAssembliesToResolve).
- pcResolvedAssemblyPaths
-
Type:
System::UInt32
The number of resolved assembly paths.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Show: