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
Get
Set
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: 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 = "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
- 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
Reference
Microsoft.VisualStudio.VCProjectEngine Namespace
Other Resources
/MANIFEST (Create Side-by-Side Assembly Manifest)