mirror of
https://github.com/tonytins/tomas.git
synced 2025-05-08 15:24:50 -04:00
- Split and simplified version details - Raw commit hash is now a build number based on that hash
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<!--<RuntimeIdentifier>cosmos</RuntimeIdentifier>-->
|
|
<Platform>cosmos</Platform>
|
|
<SupportsX86Intrinsics>false</SupportsX86Intrinsics>
|
|
<SelfContained>True</SelfContained>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</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>
|
|
</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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Tomas.Common\Tomas.Common.csproj" />
|
|
<ProjectReference Include="..\Tomas.Interface\Tomas.Interface.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|