Cosmos/source/Cosmos.VS.ProjectSystem/ProjectSystem/VS/PropertyPages/ProfilePresets.cs
2017-12-24 21:20:10 +00:00

22 lines
619 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");
}
Add("IntelEdison", "Intel Edison Serial boot");
Add("HyperV", "Hyper-V");
}
}
}