43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFramework>netstandard2.0</TargetFramework>
|
||
<AssemblyName>NewLife.Redis</AssemblyName>
|
||
<AssemblyTitle>新生命Redis缓存组件</AssemblyTitle>
|
||
<Description>Redis基础操作、列表结构、哈希结构、Set结构,经过日均100亿次调用量的项目验证</Description>
|
||
<Company>新生命开发团队</Company>
|
||
<Copyright>©2002-2018 新生命开发团队</Copyright>
|
||
<FileVersion>2.1.2018.0922</FileVersion>
|
||
<AssemblyVersion>2.1.*</AssemblyVersion>
|
||
<Deterministic>false</Deterministic>
|
||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||
<Version>2.1.2018.0922</Version>
|
||
<RepositoryUrl>https://github.com/NewLifeX/NewLife.Redis</RepositoryUrl>
|
||
<RepositoryType>git</RepositoryType>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
<OutputPath>..\Bin</OutputPath>
|
||
<DocumentationFile>..\Bin\netstandard2.0\NewLife.Redis.xml</DocumentationFile>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
<OutputPath>..\Bin</OutputPath>
|
||
<DocumentationFile>..\Bin\netstandard2.0\NewLife.Redis.xml</DocumentationFile>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<Compile Include="..\NewLife.Redis\FullRedis.cs" Link="FullRedis.cs" />
|
||
<Compile Include="..\NewLife.Redis\RedisBase.cs" Link="RedisBase.cs" />
|
||
<Compile Include="..\NewLife.Redis\RedisHash.cs" Link="RedisHash.cs" />
|
||
<Compile Include="..\NewLife.Redis\RedisList.cs" Link="RedisList.cs" />
|
||
<Compile Include="..\NewLife.Redis\RedisQueue.cs" Link="RedisQueue.cs" />
|
||
<Compile Include="..\NewLife.Redis\RedisSet.cs" Link="RedisSet.cs" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="NewLife.Core" Version="7.3.6870.42457" />
|
||
</ItemGroup>
|
||
|
||
</Project>
|