dotnet-installer/build_projects/Microsoft.DotNet.Cli.Build.Framework/UndefinedTargetException.cs

9 lines
209 B
C#
Raw Normal View History

using System;
namespace Microsoft.DotNet.Cli.Build.Framework
{
public class UndefinedTargetException : Exception
{
public UndefinedTargetException(string message) : base(message) { }
}
}