mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
26 lines
965 B
XML
26 lines
965 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net471</TargetFramework>
|
|
<PackageId>Cosmos.Build</PackageId>
|
|
<PackageDescription>Cosmos build system.
|
|
$(CosmosDescription)</PackageDescription>
|
|
<IsTool>True</IsTool>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="runtime.json" Pack="True" PackagePath="\" />
|
|
<Content Include="build\**" Pack="True" PackagePath="build\" />
|
|
<Content Include="tools\**" Pack="True" PackagePath="tools\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="15.5.180" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.5.180" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(IL2CPURepoRoot)source\IL2CPU.Debug.Symbols\IL2CPU.Debug.Symbols.csproj" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|