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