32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<AssemblyName>dotnet-sql-cache</AssemblyName>
|
|
<OutputType>exe</OutputType>
|
|
<Description>Command line tool to create tables and indexes in a Microsoft SQL Server database for distributed caching.</Description>
|
|
<PackageId>Microsoft.Extensions.Caching.SqlConfig.Tools</PackageId>
|
|
<PackageTags>cache;distributedcache;sqlserver</PackageTags>
|
|
<PackageType>DotnetCliTool</PackageType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\shared\**\*.cs" />
|
|
<None Include="prefercliruntime" Pack="true" PackagePath="\prefercliruntime" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.CommandLineUtils.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
|
|
|
|
<!--
|
|
* Use 4.4.0-* instead of $(CoreFxVersion) to address "SqlClient fails with netcoreapp2.0 on Win7/Server2008"
|
|
* https://github.com/dotnet/corefx/issues/18406
|
|
* Revert if and when $(CoreFxVersion) is upgraded to 4.4.0-*
|
|
-->
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.4.0-*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|