mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
This commit is contained in:
parent
6f9596da15
commit
895e8eb773
2 changed files with 25 additions and 21 deletions
|
|
@ -14,7 +14,7 @@
|
|||
<SccLocalPath>SAK</SccLocalPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||
<Profile>VMware</Profile>
|
||||
<Profile>User001</Profile>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<Framework>MicrosoftNET</Framework>
|
||||
|
|
@ -28,8 +28,8 @@
|
|||
<VMwareEdition>Player</VMwareEdition>
|
||||
<VMwareDeploy>ISO</VMwareDeploy>
|
||||
<IgnoreDebugStubAttribute />
|
||||
<Deployment>ISO</Deployment>
|
||||
<Launch>VMware</Launch>
|
||||
<Deployment>PXE</Deployment>
|
||||
<Launch>Slave</Launch>
|
||||
<DebugEnabled>True</DebugEnabled>
|
||||
<TraceAssemblies />
|
||||
<PXE_Deployment>PXE</PXE_Deployment>
|
||||
|
|
@ -80,8 +80,8 @@
|
|||
<ISO_TraceAssemblies />
|
||||
<ISO_EnableGDB>False</ISO_EnableGDB>
|
||||
<ISO_StartCosmosGDB>false</ISO_StartCosmosGDB>
|
||||
<Name>Guess</Name>
|
||||
<Description>Use VMware Player or Workstation to deploy and debug.</Description>
|
||||
<Name>PXE with Slave (Kudzu)</Name>
|
||||
<Description>Creates a PXE setup and hosts a DCHP and TFTP server to deploy directly to physical hardware. Allows debugging with a serial cable.</Description>
|
||||
<ISO_Name>User 001</ISO_Name>
|
||||
<ISO_Description>Creates a bootable ISO image which can be burned to a DVD. After running the selected project, an explorer window will open containing the ISO file. The ISO file can then be burned to a CD or DVD and used to boot a physical or virtual system.</ISO_Description>
|
||||
<USB_Name>Guess</USB_Name>
|
||||
|
|
@ -120,9 +120,11 @@
|
|||
<VMware_SlavePort>Serial: COM3</VMware_SlavePort>
|
||||
<USB_VisualStudioDebugPort>Pipe: Cosmos\Serial</USB_VisualStudioDebugPort>
|
||||
<User001_VisualStudioDebugPort>Pipe: Cosmos\Serial</User001_VisualStudioDebugPort>
|
||||
<ShowLaunchConsole>True</ShowLaunchConsole>
|
||||
<User001_ShowLaunchConsole>True</User001_ShowLaunchConsole>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||
<Profile>VMware</Profile>
|
||||
<Profile>User001</Profile>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<Framework>MicrosoftNET</Framework>
|
||||
|
|
@ -136,8 +138,8 @@
|
|||
<VMwareEdition>Player</VMwareEdition>
|
||||
<VMwareDeploy>ISO</VMwareDeploy>
|
||||
<IgnoreDebugStubAttribute />
|
||||
<Deployment>ISO</Deployment>
|
||||
<Launch>VMware</Launch>
|
||||
<Deployment>PXE</Deployment>
|
||||
<Launch>Slave</Launch>
|
||||
<DebugEnabled>True</DebugEnabled>
|
||||
<TraceAssemblies />
|
||||
<PXE_Deployment>PXE</PXE_Deployment>
|
||||
|
|
@ -188,8 +190,8 @@
|
|||
<ISO_TraceAssemblies />
|
||||
<ISO_EnableGDB>False</ISO_EnableGDB>
|
||||
<ISO_StartCosmosGDB>false</ISO_StartCosmosGDB>
|
||||
<Name>Guess</Name>
|
||||
<Description>Use VMware Player or Workstation to deploy and debug.</Description>
|
||||
<Name>PXE with Slave (Kudzu)</Name>
|
||||
<Description>Creates a PXE setup and hosts a DCHP and TFTP server to deploy directly to physical hardware. Allows debugging with a serial cable.</Description>
|
||||
<ISO_Name>User 001</ISO_Name>
|
||||
<ISO_Description>Creates a bootable ISO image which can be burned to a DVD. After running the selected project, an explorer window will open containing the ISO file. The ISO file can then be burned to a CD or DVD and used to boot a physical or virtual system.</ISO_Description>
|
||||
<USB_Name>Guess</USB_Name>
|
||||
|
|
@ -236,6 +238,8 @@
|
|||
<USB_SlavePort>Serial: COM3</USB_SlavePort>
|
||||
<VMware_PxeInterface>192.168.43.1</VMware_PxeInterface>
|
||||
<VMware_SlavePort>Serial: COM3</VMware_SlavePort>
|
||||
<ShowLaunchConsole>True</ShowLaunchConsole>
|
||||
<User001_ShowLaunchConsole>True</User001_ShowLaunchConsole>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Kernel\Debug\Cosmos.Debug.Kernel.Plugs\Cosmos.Debug.Kernel.Plugs.csproj">
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@
|
|||
this.tabDeployment = new System.Windows.Forms.TabPage();
|
||||
this.lboxDeployment = new System.Windows.Forms.ListBox();
|
||||
this.tabLaunch = new System.Windows.Forms.TabPage();
|
||||
this.chckShowLaunchConsole = new System.Windows.Forms.CheckBox();
|
||||
this.lboxLaunch = new System.Windows.Forms.ListBox();
|
||||
this.tabVMware = new System.Windows.Forms.TabPage();
|
||||
this.checkEnableGDB = new System.Windows.Forms.CheckBox();
|
||||
|
|
@ -83,7 +84,6 @@
|
|||
this.tabSlave = new System.Windows.Forms.TabPage();
|
||||
this.cmboSlavePort = new System.Windows.Forms.ComboBox();
|
||||
this.label6 = new System.Windows.Forms.Label();
|
||||
this.chckShowLaunchConsole = new System.Windows.Forms.CheckBox();
|
||||
this.panel1.SuspendLayout();
|
||||
this.TabControl1.SuspendLayout();
|
||||
this.tabProfile.SuspendLayout();
|
||||
|
|
@ -538,6 +538,16 @@
|
|||
this.tabLaunch.Text = "Launch";
|
||||
this.tabLaunch.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// chckShowLaunchConsole
|
||||
//
|
||||
this.chckShowLaunchConsole.AutoSize = true;
|
||||
this.chckShowLaunchConsole.Location = new System.Drawing.Point(230, 18);
|
||||
this.chckShowLaunchConsole.Name = "chckShowLaunchConsole";
|
||||
this.chckShowLaunchConsole.Size = new System.Drawing.Size(158, 17);
|
||||
this.chckShowLaunchConsole.TabIndex = 35;
|
||||
this.chckShowLaunchConsole.Text = "Show Launch Host Process";
|
||||
this.chckShowLaunchConsole.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// lboxLaunch
|
||||
//
|
||||
this.lboxLaunch.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
|
|
@ -707,16 +717,6 @@
|
|||
this.label6.TabIndex = 34;
|
||||
this.label6.Text = "Slave Port:";
|
||||
//
|
||||
// chckShowLaunchConsole
|
||||
//
|
||||
this.chckShowLaunchConsole.AutoSize = true;
|
||||
this.chckShowLaunchConsole.Location = new System.Drawing.Point(230, 18);
|
||||
this.chckShowLaunchConsole.Name = "chckShowLaunchConsole";
|
||||
this.chckShowLaunchConsole.Size = new System.Drawing.Size(154, 17);
|
||||
this.chckShowLaunchConsole.TabIndex = 35;
|
||||
this.chckShowLaunchConsole.Text = "Enable Remote Debugging";
|
||||
this.chckShowLaunchConsole.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// CosmosPage
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
|
|||
Loading…
Reference in a new issue