Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of <see cref="BuildEvent"/>.
 /// </summary>
 /// <param name="type">The <see cref="BuildEventType"/> of the event.</param>
 /// <param name="importance">The <see cref="BuildEventImportance"/> of the event.</param>
 /// <param name="message">The text message that describes the event.</param>
 public BuildEvent(BuildEventType type, BuildEventImportance importance, string message)
 {
     Type = type;
     Importance = importance;
     Message = message;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of <see cref="BuildEvent"/>.
 /// </summary>
 /// <param name="type">The <see cref="BuildEventType"/> of the event.</param>
 /// <param name="importance">The <see cref="BuildEventImportance"/> of the event.</param>
 /// <param name="message">The text message that describes the event.</param>
 public BuildEvent(BuildEventType type, BuildEventImportance importance, string message)
 {
     Type       = type;
     Importance = importance;
     Message    = message;
 }