using System.Collections.Generic; using Cosmos.Build.Common; namespace Cosmos.VS.ProjectSystem.VS.PropertyPages { internal class ProfilePresets : Dictionary { 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"); } if (QemuSupport.QemuEnabled) { Add("Qemu", "Qemu"); } Add("IntelEdison", "Intel Edison Serial boot"); Add("HyperV", "Hyper-V"); } } }