mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
22 lines
619 B
C#
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");
|
|
}
|
|
}
|
|
}
|