Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

VCLinkerTool.AssemblyDebug Property

Definition

Namespace:
Microsoft.VisualStudio.VCProjectEngine
Assembly:
Microsoft.VisualStudio.VCProjectEngine.dll
Package:
Microsoft.VisualStudio.VCProjectEngine v17.14.40264

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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