mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
68 lines
No EOL
2.2 KiB
C#
68 lines
No EOL
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Common {
|
|
public class BuildProperties : PropertiesBase {
|
|
|
|
// Profile
|
|
public Profile Profile {
|
|
get { return this.GetProperty("Profile", Profile.VMware); }
|
|
set { this.SetProperty("Profile", value); }
|
|
}
|
|
|
|
// Deployment
|
|
public Deployment Deployment {
|
|
get { return this.GetProperty("Deployment", Deployment.ISO); }
|
|
set { this.SetProperty("Deployment", value); }
|
|
}
|
|
|
|
// Launch
|
|
public Launch Launch {
|
|
get { return this.GetProperty("Launch", Launch.VMware); }
|
|
set { this.SetProperty("Launch", value); }
|
|
}
|
|
|
|
// VMware
|
|
public VMwareEdition VMwareEdition {
|
|
get { return GetProperty("VMwareEdition", VMwareEdition.Player); }
|
|
set { SetProperty("VMwareEdition", value); }
|
|
}
|
|
|
|
public String OutputPath {
|
|
get { return this.GetProperty("OutputPath"); }
|
|
set { this.SetProperty("OutputPath", value); }
|
|
}
|
|
public Framework Framework {
|
|
get { return this.GetProperty("Framework", Common.Framework.MicrosoftNET); }
|
|
set { this.SetProperty("Framework", value); }
|
|
}
|
|
public Boolean UseInternalAssembler {
|
|
get { return this.GetProperty("UseInternalAssembler", false); }
|
|
set { this.SetProperty("UseInternalAssembler", value); }
|
|
}
|
|
|
|
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 bool IgnoreDebugStubAttribute {
|
|
get { return GetProperty("IgnoreDebugStubAttribute", false); }
|
|
set { SetProperty("IgnoreDebugStubAttribute", 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); }
|
|
}
|
|
}
|
|
} |