Cosmos/source/Cosmos.VS.ProjectSystem/ProjectSystem/VS/PropertyPages/ProfilePresets.cs
Charles Betros a28e982d9f Qemu
2020-10-19 13:41:49 -05:00

26 lines
725 B
C#

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