Freigeben über


VCCLCompilerTool.SuppressStartupBanner-Eigenschaft

Unterdrückt die Anzeige von Startbanner und Informationsmeldungen.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Syntax

'Declaration
Property SuppressStartupBanner As Boolean
bool SuppressStartupBanner { get; set; }
property bool SuppressStartupBanner {
    bool get ();
    void set (bool value);
}
abstract SuppressStartupBanner : bool with get, set
function get SuppressStartupBanner () : boolean 
function set SuppressStartupBanner (value : boolean)

Eigenschaftswert

Typ: Boolean
true gibt an, dass das Startbanner nicht angezeigt wird; false gibt an, dass das Startbanner angezeigt wird.

Hinweise

Geben Sie true an, um das Startbanner nicht anzuzeigen oder false, um das Startbanner anzuzeigen. SuppressStartupBanner macht die Funktionen der /NOLOGO (Startbanner unterdrücken) (Linker) - Option des Linkers, der Ausführen von LIB - Option des Bibliothekars, der /nologo (Startbanner unterdrücken) (C/C++) - Option des Compilers, der /NOLOGO- des BSCMake- Option Tools, die MIDL- Option Eigenschaftenseiten "MIDL": "Allgemein" des Compilers verfügbar, und/nologo Option von VCWebServiceProxyGeneratorTool.

Beispiele

Siehe Gewusst wie: Kompilieren von Beispielcode für die Erweiterbarkeit von Projektmodellen zu Informationen darüber, wie dieses Beispiel kompiliert und ausgeführt wird.

Im folgenden Beispiel wird die Eigenschaft SuppressStartupBanner des Linkers in der integrierten Entwicklungsumgebung (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 VCLinkerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCLinkerTool")
        tool.SuppressStartupBanner = False
    End Sub
End Module

.NET Framework-Sicherheit

Siehe auch

Referenz

VCCLCompilerTool Schnittstelle

Microsoft.VisualStudio.VCProjectEngine-Namespace