VCLinkerTool.AssemblyDebug Propriedade

Definição

Obtém ou define um valor que indica o nível de suporte à depuração.

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

Valor da propriedade

linkAssemblyDebug

Uma enumeração linkAssemblyDebug.

Atributos

Exemplos

' 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  

Comentários

AssemblyDebug expõe a funcionalidade da opção de vinculador /ASSEMBLYDEBUG (Add DebuggableAttribute) .

Use a linkAssemblyDebug enumeração para definir o valor dessa propriedade.

Aplica-se a