ProjectCollection.Loggers Property
Definition
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.
Loggers that all contained projects will use for their builds. Loggers are added with the RegisterLogger(ILogger). Returns an empty collection if there are no loggers.
public:
property System::Collections::Generic::ICollection<Microsoft::Build::Framework::ILogger ^> ^ Loggers { System::Collections::Generic::ICollection<Microsoft::Build::Framework::ILogger ^> ^ get(); };
public System.Collections.Generic.ICollection<Microsoft.Build.Framework.ILogger> Loggers { get; }
member this.Loggers : System.Collections.Generic.ICollection<Microsoft.Build.Framework.ILogger>
Public ReadOnly Property Loggers As ICollection(Of ILogger)
Property Value
All loggers that projects in this collection can use for their builds.
Remarks
Loggers are added with the RegisterLogger method.