Cosmos/source2/Build/Cosmos.Build.Common/BuildProperties.cs
DanStory_cp 3736486d0b Added PropertiesBase(.cs) class and file.
Added BuildProperties(.cs) class and file.
Added DebugQemuProperties(.cs) class and file.
Added VMQemuProperties(.cs) class and file.
2009-05-29 02:24:55 +00:00

32 lines
838 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Build.Common
{
public class BuildProperties : PropertiesBase
{
public String OutputPath
{
get { return this.GetProperty("OutputPath"); }
set { this.SetProperty("OutputPath", value); }
}
public TargetHost Target
{
get { return this.GetProperty("BuildTarget", TargetHost.QEMU); }
set { this.SetProperty("BuildTarget", 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); }
}
}
}