14 lines
450 B
C#
14 lines
450 B
C#
|
using System.ComponentModel;
|
||
|
using Nuke.Common.Tooling;
|
||
|
|
||
|
[TypeConverter(typeof(TypeConverter<Configuration>))]
|
||
|
public class Configuration : Enumeration
|
||
|
{
|
||
|
public static Configuration Debug = new Configuration { Value = nameof(Debug) };
|
||
|
public static Configuration Release = new Configuration { Value = nameof(Release) };
|
||
|
|
||
|
public static implicit operator string(Configuration configuration)
|
||
|
{
|
||
|
return configuration.Value;
|
||
|
}
|
||
|
}
|