VCLinkerTool.AdditionalManifestDependencies Property
Gets or sets the additional XML manifest fragments that the linker will add to the manifest file.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
声明
Property AdditionalManifestDependencies As String
用法
Dim instance As VCLinkerTool
Dim value As String
value = instance.AdditionalManifestDependencies
instance.AdditionalManifestDependencies = value
string AdditionalManifestDependencies { get; set; }
property String^ AdditionalManifestDependencies {
String^ get ();
void set (String^ value);
}
function get AdditionalManifestDependencies () : String
function set AdditionalManifestDependencies (value : String)
Property Value
Type: System.String
A string representing the names of the manifests.
Examples
The following example modifies the linker's AdditionalManifestDependencies property in the integrated development environment (IDE):
' Macro code.
' Before running, load a Visual C++ project.
Imports EnvDTE
Imports EnvDTE80
Imports System.Diagnostics
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim cfgs, tools As IVCCollection
Dim cfg As VCConfiguration
Dim tool As VCLinkerTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCLinkerTool")
MsgBox("Additional Lib Directory: " & _
tool.AdditionalManifestDependencies)
tool.AdditionalManifestDependencies = "c:\temp"
MsgBox("Additional Lib Directory: " & _
tool.AdditionalManifestDependencies)
End Sub
End Module
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Concepts
/MANIFEST (Create Side-by-Side Assembly Manifest)
/MANIFESTDEPENDENCY (Specify Manifest Dependencies)
/MANIFESTFILE (Name Manifest File)