23 lines
288 B
C#
23 lines
288 B
C#
using System;
|
|
|
|
namespace Matrix42.Extensions.Scaffolder.Core.Project;
|
|
|
|
[Flags]
|
|
public enum ProjectFunctionality
|
|
{
|
|
None = 0,
|
|
WebApi = 1,
|
|
Engine = 2,
|
|
Behavior = 4,
|
|
Connector = 8,
|
|
Custom = 16
|
|
}
|
|
|
|
[Flags]
|
|
public enum RuntimeTargets
|
|
{
|
|
Win = 1,
|
|
WinCore = 2,
|
|
LinuxCore = 4,
|
|
All = 8
|
|
} |