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