Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit 4698f08

Browse files
Update to 0.0.1-RC1 (initial release)
Finally. A thing.
1 parent 16cd351 commit 4698f08

25 files changed

+1387122
-1
lines changed

src/.vs/DremDOS/v16/.suo

31.5 KB
Binary file not shown.

src/DremDOS.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30002.166
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DremDOS", "DremDOS\DremDOS.csproj", "{C0559BB7-467D-4E29-BBDE-CD3C1D8C7C6B}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C0559BB7-467D-4E29-BBDE-CD3C1D8C7C6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C0559BB7-467D-4E29-BBDE-CD3C1D8C7C6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C0559BB7-467D-4E29-BBDE-CD3C1D8C7C6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C0559BB7-467D-4E29-BBDE-CD3C1D8C7C6B}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {10CE9B80-D9E6-4001-A558-B142618905ED}
24+
EndGlobalSection
25+
EndGlobal

src/DremDOS/DremDOS.csproj

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<RuntimeIdentifier>cosmos</RuntimeIdentifier>
6+
<SelfContained>True</SelfContained>
7+
<BinFormat>ELF</BinFormat>
8+
<StackCorruptionDetectionEnabled>True</StackCorruptionDetectionEnabled>
9+
<StackCorruptionDetectionLevel>MethodFooters</StackCorruptionDetectionLevel>
10+
<Deployment>ISO</Deployment>
11+
<DebugEnabled>True</DebugEnabled>
12+
<DebugMode>Source</DebugMode>
13+
<IgnoreDebugStubAttribute>False</IgnoreDebugStubAttribute>
14+
</PropertyGroup>
15+
16+
<PropertyGroup>
17+
<EnableGDB>False</EnableGDB>
18+
<StartCosmosGDB>False</StartCosmosGDB>
19+
<VisualStudioDebugPort>Pipe: Cosmos\Serial</VisualStudioDebugPort>
20+
<CosmosDebugPort>Serial: COM1</CosmosDebugPort>
21+
<Launch>VMware</Launch>
22+
<Profile>VMware</Profile>
23+
<Description>Use VMware Player or Workstation to deploy and debug.</Description>
24+
<PxeInterface>192.168.0.8</PxeInterface>
25+
</PropertyGroup>
26+
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
28+
<DebugEnabled>False</DebugEnabled>
29+
</PropertyGroup>
30+
31+
<ItemGroup>
32+
<PackageReference Include="Cosmos.Build" Version="0-*" NoWarn="NU1604" />
33+
<PackageReference Include="Cosmos.Debug.Kernel" Version="0-*" NoWarn="NU1604" />
34+
<PackageReference Include="Cosmos.System2" Version="0-*" NoWarn="NU1604" />
35+
</ItemGroup>
36+
37+
</Project>

0 commit comments

Comments
 (0)