mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
<Project Sdk="Microsoft.Net.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net462</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<BinFormat>elf</BinFormat>
|
|
<Profile>VMware</Profile>
|
|
<DebugEnabled>true</DebugEnabled>
|
|
<DebugMode>Source</DebugMode>
|
|
<TraceMode>User</TraceMode>
|
|
<EnableGDB>False</EnableGDB>
|
|
<StartCosmosGDB>false</StartCosmosGDB>
|
|
<VMWareEdition>Player</VMWareEdition>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<Description>Use VMware Player or Workstation to deploy and debug.</Description>
|
|
<Deployment>ISO</Deployment>
|
|
<Launch>VMware</Launch>
|
|
<VisualStudioDebugPort>Pipe: Cosmos\Serial</VisualStudioDebugPort>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="*" />
|
|
<None Remove="*.Cosmos" />
|
|
<Compile Remove="*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include=".\$KernelProjectName$$ProjectTypeExtension$">
|
|
<Name>$KernelProjectName$</Name>
|
|
<Project>$KernelProjectGuid$</Project>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(AppData)\Cosmos User Kit\Build\VSIP\Cosmos.targets" />
|
|
|
|
</Project>
|