| File: ProjectEvaluationStartedEventArgs.cs | Web Access |
| Project: src\msbuild\src\Framework\Microsoft.Build.Framework.csproj (Microsoft.Build.Framework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.Build.Framework { /// <summary> /// Arguments for the project evaluation started event. /// </summary> [Serializable] public class ProjectEvaluationStartedEventArgs : BuildStatusEventArgs { /// <summary> /// Initializes a new instance of the ProjectEvaluationStartedEventArgs class. /// </summary> public ProjectEvaluationStartedEventArgs() { } /// <summary> /// Initializes a new instance of the ProjectEvaluationStartedEventArgs class. /// </summary> public ProjectEvaluationStartedEventArgs(string? message, params object[]? messageArgs) : base(message, helpKeyword: null, senderName: null, DateTime.UtcNow, messageArgs) { } /// <summary> /// Gets or sets the full path of the project that started evaluation. /// </summary> public string? ProjectFile { get; set; } } }