Files
linux-packaging-mono/mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/ProjectCollectionChangedEventArgs.cs

17 lines
336 B
C#
Raw Normal View History

using System;
using Microsoft.Build.Construction;
namespace Microsoft.Build.Evaluation
{
public class ProjectCollectionChangedEventArgs : EventArgs
{
public ProjectCollectionChangedEventArgs (ProjectCollectionChangedState state)
{
State = state;
}
public ProjectCollectionChangedState State { get; private set; }
}
}