mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
38 lines
1.4 KiB
Text
38 lines
1.4 KiB
Text
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.5</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<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>VMware</Launch>
|
|
<Profile>VMware</Profile>
|
|
<Description>Use VMware Player or Workstation to deploy and debug.</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Cosmos.bxrc">
|
|
<SubType>Content</SubType>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\source\Cosmos.Core_Asm\Cosmos.Core_Asm.csproj">
|
|
<ProjectReference Include="..\..\source\Cosmos.Debug.Kernel.Plugs.Asm\Cosmos.Debug.Kernel.Plugs.Asm.csproj">
|
|
<ProjectReference Include="..\BoxingTests\BoxingTests.csproj">
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\Cosmos\Cosmos.targets" />
|
|
|
|
</Project>
|