Cosmos/source/Cosmos.VS.ProjectSystem/ProfilePresets.cs
2017-04-14 23:28:26 -05:00

24 lines
No EOL
650 B
C#

using System.Collections.Generic;
using System.Reflection;
using Cosmos.Debug.Common;
namespace Cosmos.VS.ProjectSystem
{
public class ProfilePresets : Dictionary<string, string>
{
public ProfilePresets()
{
Logger.TraceMethod(MethodBase.GetCurrentMethod());
Add("ISO", "ISO Image");
Add("USB", "USB Bootable Drive");
Add("PXE", "PXE Network Boot");
Add("VMware", "VMware");
if (BochsSupport.BochsEnabled)
{
Add("Bochs", "Bochs");
}
Add("IntelEdison", "Intel Edison Serial boot");
}
}
}