mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.5</TargetFramework>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Cosmos.targets" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Cosmos.targets">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" Version="15.1.1012" />
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="15.1.1012" />
|
|
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="15.1.1012" />
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.1.1012" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Cosmos.Build.Common\Cosmos.Build.Common.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Debug.Common\Cosmos.Debug.Common.csproj" />
|
|
<ProjectReference Include="..\Cosmos.Debug.Symbols\Cosmos.Debug.Symbols.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|