13 lines
209 B
C#
13 lines
209 B
C#
namespace Matrix42.Extensions.Scaffolder.Wizard
|
|
{
|
|
[System.Flags]
|
|
public enum RuntimeTargets
|
|
{
|
|
None = 0,
|
|
Win = 1,
|
|
WinCore = 2,
|
|
LinuxCore = 4,
|
|
All = 8
|
|
}
|
|
}
|