Cosmos/source2/VSIP/Cosmos.VS.Package/ProfilePresets.cs
BlueSkeye_cp d64f99adf3 Add Bochs debugging support to Visual Studio Cosmos project (UI).
A new pane and associated launch type is added in the Cosmos project properties pane.
2012-09-20 09:41:02 +00:00

18 lines
473 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"); }
}
}
}