-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXiaoFeng.Redis.csproj
41 lines (41 loc) · 2.08 KB
/
XiaoFeng.Redis.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;</TargetFrameworks>
<OutputType>Library</OutputType>
<Authors>Jacky</Authors>
<Product>XiaoFeng.Redis中间件</Product>
<Description>Redis中间件,支持.NET框架、.NET内核和.NET标准库,一种非常方便操作的客户端工具。实现了Hash,Key,String,ZSet,Stream,Log,List,订阅发布,线程池功能;</Description>
<Copyright>CopyRight © 2008-2024 魔法精灵(www.fayelf.com) QQ:7092734 Email:jacky@fayelf.com</Copyright>
<Company>魔法精灵</Company>
<VersionPrefix>2.0</VersionPrefix>
<VersionSuffix>2</VersionSuffix>
<Version>$(VersionPrefix).$(VersionSuffix)</Version>
<FileVersion>$(Version)</FileVersion>
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
<ProductVersion>$(VersionPrefix)</ProductVersion>
<Deterministic>false</Deterministic>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<SignAssembly>False</SignAssembly>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<RepositoryUrl>https://github.com/zhuovi/XiaoFeng.Redis</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIconUrl>http://nuget.fayelf.com/x.png</PackageIconUrl>
<PackageTags>XiaoFeng;FAYELF;Redis;</PackageTags>
<PackageReleaseNotes>优化redis连接串;优化关闭时对象为空的bug;修复Redis中消息队列Key与Value写反的bug;优化Redis订阅设置为不超时;</PackageReleaseNotes>
<DelaySign>False</DelaySign>
<IsPackable>true</IsPackable>
<PackageProjectUrl>https://github.com/zhuovi/XiaoFeng.Redis</PackageProjectUrl>
<Title>XiaoFeng.Redis</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XiaoFeng.Core\XiaoFeng.Core.csproj" />
</ItemGroup>
</Project>