| File: Definition\ProjectCollectionChangedEventArgs.cs | Web Access |
| Project: src\msbuild\src\Build\Microsoft.Build.csproj (Microsoft.Build) |
// 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.Evaluation { /// <summary> /// Properties or other mutable state associated with a <see cref="ProjectCollection"/>. /// </summary> public enum ProjectCollectionChangedState { /// <summary> /// The <see cref="ProjectCollection.DefaultToolsVersion"/> property changed. /// </summary> DefaultToolsVersion, /// <summary> /// The toolsets changed. /// </summary> Toolsets, /// <summary> /// The loggers changed. /// </summary> Loggers, /// <summary> /// The global properties changed. /// </summary> GlobalProperties, /// <summary> /// The <see cref="ProjectCollection.IsBuildEnabled"/> property changed. /// </summary> IsBuildEnabled, /// <summary> /// The <see cref="ProjectCollection.OnlyLogCriticalEvents"/> property changed. /// </summary> OnlyLogCriticalEvents, /// <summary> /// The <see cref="ProjectCollection.HostServices"/> property changed. /// </summary> HostServices, /// <summary> /// The <see cref="ProjectCollection.DisableMarkDirty"/> property changed. /// </summary> DisableMarkDirty, /// <summary> /// The <see cref="ProjectCollection.SkipEvaluation"/> property changed. /// </summary> SkipEvaluation, EnableTargetOutputLogging } /// <summary> /// Event arguments for the <see cref="ProjectCollection.ProjectCollectionChanged"/> event. /// </summary> public class ProjectCollectionChangedEventArgs : EventArgs { /// <summary> /// Initializes a new instance of the <see cref="ProjectCollectionChangedEventArgs"/> class. /// </summary> internal ProjectCollectionChangedEventArgs(ProjectCollectionChangedState changedState) { Changed = changedState; } /// <summary> /// Gets the nature of the change made to the <see cref="ProjectCollection"/>. /// </summary> public ProjectCollectionChangedState Changed { get; private set; } } }