13 lines
216 B
C#
13 lines
216 B
C#
namespace Needle.Engine
|
|
{
|
|
public interface IBuildContext
|
|
{
|
|
bool IsDistributionBuild { get; }
|
|
bool ViaContextMenu { get; }
|
|
}
|
|
|
|
public interface IHasBuildContext
|
|
{
|
|
IBuildContext BuildContext { get; }
|
|
}
|
|
} |