mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
29 lines
917 B
C#
29 lines
917 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Common {
|
|
public class DebugProperties : PropertiesBase {
|
|
public TraceAssemblies TraceAssemblies {
|
|
get { return GetProperty("TraceAssemblies", TraceAssemblies.User); }
|
|
set { SetProperty("TraceAssemblies", value); }
|
|
}
|
|
|
|
public DebugMode DebugMode {
|
|
get { return GetProperty("DebugMode", DebugMode.Source); }
|
|
set { SetProperty("DebugMode", value); }
|
|
}
|
|
|
|
public Boolean EnableGDB {
|
|
get { return GetProperty("EnableGDB", false); }
|
|
set { SetProperty("EnableGDB", value); }
|
|
}
|
|
|
|
public bool StartCosmosGDB
|
|
{
|
|
get { return GetProperty("StartCosmosGDB", false); }
|
|
set { SetProperty("StartCosmosGDB", value); }
|
|
}
|
|
}
|
|
}
|