mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
14 lines
448 B
C#
14 lines
448 B
C#
using System.ComponentModel;
|
|
using Nuke.Common.Tooling;
|
|
|
|
[TypeConverter(typeof(TypeConverter<Configuration>))]
|
|
public class Configuration : Enumeration
|
|
{
|
|
public static readonly Configuration Debug = new() { Value = nameof(Debug) };
|
|
public static readonly Configuration Release = new() { Value = nameof(Release) };
|
|
|
|
public static implicit operator string(Configuration configuration)
|
|
{
|
|
return configuration.Value;
|
|
}
|
|
}
|