Cosmos/source/Cosmos.VS.Package/ProfilePresets.cs
2014-12-30 18:42:01 +01:00

19 lines
528 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Cosmos.Debug.Common;
namespace Cosmos.VS.Package {
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");
}
}
}