Partager via


VCCLCompilerTool.KeepComments, propriété

Obtient ou définit une valeur indiquant s'il faut supprimer les commentaires du code source. KeepComments expose les fonctions de l'option /C (Conserver les commentaires pendant le prétraitement) du compilateur.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
Property KeepComments As Boolean
bool KeepComments { get; set; }
property bool KeepComments {
    bool get ();
    void set (bool value);
}
abstract KeepComments : bool with get, set
function get KeepComments () : boolean 
function set KeepComments (value : boolean)

Valeur de propriété

Type : Boolean
true si les commentaires du code source sont conservés ; sinon, false.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour plus d'informations sur la compilation et l'exécution de cet exemple.

L'exemple suivant modifie la propriété d'KeepComments dans l'environnement de développement intégré (IDE) :

' 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 VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.GeneratePreprocessedFile = preprocessOption.preprocessYes
        tool.KeepComments = True
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCCLCompilerTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms