mirror of
https://github.com/tonytins/tomas.git
synced 2025-03-22 15:42:18 +00:00
- The old App abstract class has been scrapped in favor of the IProgram interface in the Tomas.Interface library. - A new terminal emulator was created when not on Windows. - In both OS and terminal, a single dictionary has the commands and classes that implement IProgram. - Start() now returns a boolean that behaves similar to C's main in returning an integer. - A new while loop in both terminal and kernel handles the execution of programs.
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<RuntimeIdentifier>cosmos</RuntimeIdentifier>
|
|
<SelfContained>True</SelfContained>
|
|
<BinFormat>ELF</BinFormat>
|
|
<StackCorruptionDetectionEnabled>True</StackCorruptionDetectionEnabled>
|
|
<StackCorruptionDetectionLevel>MethodFooters</StackCorruptionDetectionLevel>
|
|
<Deployment>ISO</Deployment>
|
|
<DebugEnabled>True</DebugEnabled>
|
|
<DebugMode>Source</DebugMode>
|
|
<IgnoreDebugStubAttribute>False</IgnoreDebugStubAttribute>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<EnableGDB>False</EnableGDB>
|
|
<StartCosmosGDB>False</StartCosmosGDB>
|
|
<VisualStudioDebugPort>Pipe: Cosmos\Serial</VisualStudioDebugPort>
|
|
<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>
|
|
<AssemblyName>Tomas</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Cosmos.Build" Version="0-*" NoWarn="NU1604" />
|
|
<PackageReference Include="Cosmos.Debug.Kernel" Version="0-*" NoWarn="NU1604" />
|
|
<PackageReference Include="Cosmos.System2" Version="0-*" NoWarn="NU1604" />
|
|
<PackageReference Include="GitInfo" Version="2.0.26">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Tomas.Common\Tomas.Common.csproj" />
|
|
<ProjectReference Include="..\Tomas.Interface\Tomas.Interface.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|