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

'Declaration
Property AdditionalManifestDependencies As String
string AdditionalManifestDependencies { get; set; }
property String^ AdditionalManifestDependencies {
    String^ get ();
    void set (String^ value);
}
abstract AdditionalManifestDependencies : string with get, set
function get AdditionalManifestDependencies () : String 
function set AdditionalManifestDependencies (value : String)

Property Value

Type: 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 = "type='Win32' name='Test.Research.SampleAssembly' version='6.0.0.0' processorArchitecture='X86' publicKeyToken='0000000000000000' language='*'\"
        MsgBox("Additional Lib Directory: " & _
        tool.AdditionalManifestDependencies)
    End Sub
End Module

.NET Framework Security

See Also

Reference

VCLinkerTool Interface

Microsoft.VisualStudio.VCProjectEngine Namespace

Other Resources

/MANIFEST (Create Side-by-Side Assembly Manifest)

/MANIFESTDEPENDENCY (Specify Manifest Dependencies)

/MANIFESTFILE (Name Manifest File)