forked from CosmosOS/Cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded Cosmos projects to the new format.
Removed test kernel Cosmos projects.
- Loading branch information
Showing
23 changed files
with
300 additions
and
1,272 deletions.
There are no files selected for viewing
83 changes: 72 additions & 11 deletions
83
Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystem.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,78 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<ProjectGuid>{49f2c01d-d2c5-4564-810b-1ae92236c5c1}</ProjectGuid> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="CosmosGraphicSubsystemBoot.Cosmos" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<BinFormat>elf</BinFormat> | ||
<DebugEnabled>True</DebugEnabled> | ||
<DebugMode>Source</DebugMode> | ||
<TraceMode>User</TraceMode> | ||
<EnableGDB>False</EnableGDB> | ||
<StartCosmosGDB>False</StartCosmosGDB> | ||
<Deployment>ISO</Deployment> | ||
<VisualStudioDebugPort>Pipe: Cosmos\Serial</VisualStudioDebugPort> | ||
<StackCorruptionDetectionEnabled>True</StackCorruptionDetectionEnabled> | ||
<StackCorruptionDetectionLevel>MethodFooters</StackCorruptionDetectionLevel> | ||
<IgnoreDebugStubAttribute>False</IgnoreDebugStubAttribute> | ||
<CosmosDebugPort>Serial: COM1</CosmosDebugPort> | ||
<Launch>Bochs</Launch> | ||
<Profile>Bochs</Profile> | ||
<Description>Use Bochs emulator to deploy and debug.</Description> | ||
<PxeInterface>192.168.0.8</PxeInterface> | ||
<VMware_StackCorruptionDetectionEnabled>True</VMware_StackCorruptionDetectionEnabled> | ||
<VMware_StackCorruptionDetectionLevel>MethodFooters</VMware_StackCorruptionDetectionLevel> | ||
<VMware_Description>Use VMware Player or Workstation to deploy and debug.</VMware_Description> | ||
<VMware_Deployment>ISO</VMware_Deployment> | ||
<VMware_Launch>VMware</VMware_Launch> | ||
<VMware_DebugEnabled>True</VMware_DebugEnabled> | ||
<VMware_DebugMode>Source</VMware_DebugMode> | ||
<VMware_IgnoreDebugStubAttribute>False</VMware_IgnoreDebugStubAttribute> | ||
<VMware_CosmosDebugPort>Serial: COM1</VMware_CosmosDebugPort> | ||
<VMware_VisualStudioDebugPort>Pipe: Cosmos\Serial</VMware_VisualStudioDebugPort> | ||
<VMware_PxeInterface>192.168.0.8</VMware_PxeInterface> | ||
<VMware_OutputPath>bin\Debug\net462\</VMware_OutputPath> | ||
<VMware_EnableGDB>False</VMware_EnableGDB> | ||
<VMware_StartCosmosGDB>False</VMware_StartCosmosGDB> | ||
<Bochs_StackCorruptionDetectionEnabled>True</Bochs_StackCorruptionDetectionEnabled> | ||
<Bochs_StackCorruptionDetectionLevel>MethodFooters</Bochs_StackCorruptionDetectionLevel> | ||
<Bochs_Description>Use Bochs emulator to deploy and debug.</Bochs_Description> | ||
<Bochs_Deployment>ISO</Bochs_Deployment> | ||
<Bochs_Launch>Bochs</Bochs_Launch> | ||
<Bochs_DebugEnabled>True</Bochs_DebugEnabled> | ||
<Bochs_DebugMode>Source</Bochs_DebugMode> | ||
<Bochs_IgnoreDebugStubAttribute>False</Bochs_IgnoreDebugStubAttribute> | ||
<Bochs_CosmosDebugPort>Serial: COM1</Bochs_CosmosDebugPort> | ||
<Bochs_VisualStudioDebugPort>Pipe: Cosmos\Serial</Bochs_VisualStudioDebugPort> | ||
<Bochs_PxeInterface>192.168.0.8</Bochs_PxeInterface> | ||
<Bochs_OutputPath>bin\Debug\net462\</Bochs_OutputPath> | ||
<Bochs_EnableGDB>False</Bochs_EnableGDB> | ||
<Bochs_StartCosmosGDB>False</Bochs_StartCosmosGDB> | ||
<USB_StackCorruptionDetectionEnabled>True</USB_StackCorruptionDetectionEnabled> | ||
<USB_StackCorruptionDetectionLevel>MethodFooters</USB_StackCorruptionDetectionLevel> | ||
<USB_Description>Makes a USB device such as a flash drive or external hard disk bootable.</USB_Description> | ||
<USB_Deployment>USB</USB_Deployment> | ||
<USB_Launch>None</USB_Launch> | ||
<USB_DebugEnabled>False</USB_DebugEnabled> | ||
<USB_DebugMode>Source</USB_DebugMode> | ||
<USB_IgnoreDebugStubAttribute>False</USB_IgnoreDebugStubAttribute> | ||
<USB_CosmosDebugPort>Serial: COM1</USB_CosmosDebugPort> | ||
<USB_VisualStudioDebugPort>Pipe: Cosmos\Serial</USB_VisualStudioDebugPort> | ||
<USB_PxeInterface>192.168.0.8</USB_PxeInterface> | ||
<USB_OutputPath>bin\Debug\net462\</USB_OutputPath> | ||
<USB_EnableGDB>False</USB_EnableGDB> | ||
<USB_StartCosmosGDB>False</USB_StartCosmosGDB> | ||
<Name>CosmosGraphicSubsystemBoot</Name> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\source\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" /> | ||
<ProjectReference Include="..\..\source\Cosmos.System2\Cosmos.System2.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\source\Cosmos.System2\Cosmos.System2.csproj" /> | ||
<ProjectReference Include="..\..\source\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Cosmos.Build" Version="*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
98 changes: 0 additions & 98 deletions
98
Demos/CosmosGraphicSubsystem/CosmosGraphicSubsystemBoot.Cosmos
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,63 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.Net.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<ProjectGuid>{e35e0dbf-555f-4d38-8f28-acdfa9dc97bd}</ProjectGuid> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="*.Cosmos" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<BinFormat>elf</BinFormat> | ||
<DebugEnabled>False</DebugEnabled> | ||
<DebugMode>Source</DebugMode> | ||
<TraceMode>User</TraceMode> | ||
<EnableGDB>False</EnableGDB> | ||
<StartCosmosGDB>False</StartCosmosGDB> | ||
<Deployment>ISO</Deployment> | ||
<VisualStudioDebugPort>Pipe: Cosmos\Serial</VisualStudioDebugPort> | ||
<StackCorruptionDetectionEnabled>True</StackCorruptionDetectionEnabled> | ||
<StackCorruptionDetectionLevel>MethodFooters</StackCorruptionDetectionLevel> | ||
<IgnoreDebugStubAttribute>False</IgnoreDebugStubAttribute> | ||
<CosmosDebugPort>Serial: COM1</CosmosDebugPort> | ||
<Launch>VMware</Launch> | ||
<Profile>VMware</Profile> | ||
<Description>Use VMware Player or Workstation to deploy and debug.</Description> | ||
<PxeInterface>192.168.0.8</PxeInterface> | ||
<VMware_StackCorruptionDetectionEnabled>True</VMware_StackCorruptionDetectionEnabled> | ||
<VMware_StackCorruptionDetectionLevel>MethodFooters</VMware_StackCorruptionDetectionLevel> | ||
<VMware_Description>Use VMware Player or Workstation to deploy and debug.</VMware_Description> | ||
<VMware_Deployment>ISO</VMware_Deployment> | ||
<VMware_Launch>VMware</VMware_Launch> | ||
<VMware_DebugEnabled>False</VMware_DebugEnabled> | ||
<VMware_DebugMode>Source</VMware_DebugMode> | ||
<VMware_IgnoreDebugStubAttribute>False</VMware_IgnoreDebugStubAttribute> | ||
<VMware_CosmosDebugPort>Serial: COM1</VMware_CosmosDebugPort> | ||
<VMware_VisualStudioDebugPort>Pipe: Cosmos\Serial</VMware_VisualStudioDebugPort> | ||
<VMware_PxeInterface>192.168.0.8</VMware_PxeInterface> | ||
<VMware_OutputPath>bin\Debug\net462\</VMware_OutputPath> | ||
<VMware_EnableGDB>False</VMware_EnableGDB> | ||
<VMware_StartCosmosGDB>False</VMware_StartCosmosGDB> | ||
<Bochs_StackCorruptionDetectionEnabled>True</Bochs_StackCorruptionDetectionEnabled> | ||
<Bochs_StackCorruptionDetectionLevel>MethodFooters</Bochs_StackCorruptionDetectionLevel> | ||
<Bochs_Description>Use Bochs emulator to deploy and debug.</Bochs_Description> | ||
<Bochs_Deployment>ISO</Bochs_Deployment> | ||
<Bochs_Launch>Bochs</Bochs_Launch> | ||
<Bochs_DebugEnabled>True</Bochs_DebugEnabled> | ||
<Bochs_DebugMode>Source</Bochs_DebugMode> | ||
<Bochs_IgnoreDebugStubAttribute>False</Bochs_IgnoreDebugStubAttribute> | ||
<Bochs_CosmosDebugPort>Serial: COM1</Bochs_CosmosDebugPort> | ||
<Bochs_VisualStudioDebugPort>Pipe: Cosmos\Serial</Bochs_VisualStudioDebugPort> | ||
<Bochs_PxeInterface>192.168.0.8</Bochs_PxeInterface> | ||
<Bochs_OutputPath>bin\Debug\net462\</Bochs_OutputPath> | ||
<Bochs_EnableGDB>False</Bochs_EnableGDB> | ||
<Bochs_StartCosmosGDB>False</Bochs_StartCosmosGDB> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\source\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" /> | ||
<ProjectReference Include="..\..\source\Cosmos.System2\Cosmos.System2.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\source\Cosmos.System2\Cosmos.System2.csproj" /> | ||
<ProjectReference Include="..\..\source\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Cosmos.Build" Version="*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.