Cosmos/source/Cosmos.VS.ProjectSystem/ProfilePresets.cs
2017-03-19 09:29:46 -05:00

19 lines
515 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Debug.Common;
namespace Cosmos.VS.ProjectSystem {
public class ProfilePresets : Dictionary<string, string> {
public ProfilePresets() {
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");
}
}
}