mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
40 lines
No EOL
1.8 KiB
XML
40 lines
No EOL
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net462</TargetFramework>
|
|
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\..\Cosmos.snk</AssemblyOriginatorKeyFile>
|
|
<!--
|
|
NU1605 (Detected package downgrade) is being logged as error, which may cause the build to fail.
|
|
The .NET Standard libraries can't be upgraded, as this project targets .NET Framework 4.6.2.
|
|
-->
|
|
<NoWarn>NU1605</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<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" />
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="1.0.1" />
|
|
<PackageReference Include="System.Data.Common" Version="4.1.0" />
|
|
<PackageReference Include="System.IO" Version="4.1.0" />
|
|
<PackageReference Include="System.Reflection" Version="4.1.0" />
|
|
<PackageReference Include="System.Runtime" Version="4.1.0" />
|
|
<PackageReference Include="System.Runtime.Extensions" Version="4.1.0" />
|
|
</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> |