VCLinkerTool.AssemblyDebug Property

Definition

Gets or sets a value indicating the level of debugging support.

public:
 property Microsoft::VisualStudio::VCProjectEngine::linkAssemblyDebug AssemblyDebug { Microsoft::VisualStudio::VCProjectEngine::linkAssemblyDebug get(); void set(Microsoft::VisualStudio::VCProjectEngine::linkAssemblyDebug value); };
public:
 property Microsoft::VisualStudio::VCProjectEngine::linkAssemblyDebug AssemblyDebug { Microsoft::VisualStudio::VCProjectEngine::linkAssemblyDebug get(); void set(Microsoft::VisualStudio::VCProjectEngine::linkAssemblyDebug value); };
[System.Runtime.InteropServices.DispId(57)]
public Microsoft.VisualStudio.VCProjectEngine.linkAssemblyDebug AssemblyDebug { [System.Runtime.InteropServices.DispId(57)] get; [System.Runtime.InteropServices.DispId(57)] set; }
[<System.Runtime.InteropServices.DispId(57)>]
[<get: System.Runtime.InteropServices.DispId(57)>]
[<set: System.Runtime.InteropServices.DispId(57)>]
member this.AssemblyDebug : Microsoft.VisualStudio.VCProjectEngine.linkAssemblyDebug with get, set
Public Property AssemblyDebug As linkAssemblyDebug

Property Value

A linkAssemblyDebug enumeration.

Attributes

Examples

' add reference to Microsoft.VisualStudio.VCProjectEngine  
Imports EnvDTE  
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")  
    tool.AssemblyDebug = linkAssemblyDebug.linkAssemblyDebugFull  
  End Sub  
End Module  

Remarks

AssemblyDebug exposes the functionality of the /ASSEMBLYDEBUG (Add DebuggableAttribute) linker option.

Use the linkAssemblyDebug enumeration to set the value of this property.

Applies to