forked from vieapps/Enyim.Caching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Enyim.Caching.csproj
64 lines (59 loc) · 3.49 KB
/
Enyim.Caching.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<WarningLevel>3</WarningLevel>
<NoWarn>1701,1702,1705,1066,0067</NoWarn>
<DocumentationFile>bin/$(Configuration)/$(TargetFramework)/Enyim.Caching.xml</DocumentationFile>
<RootNamespace>Enyim</RootNamespace>
<AssemblyName>Enyim.Caching</AssemblyName>
<AssemblyTitle>Enyim Memcached</AssemblyTitle>
<AssemblyVersion>1.7$(ReleaseVersion)</AssemblyVersion>
<FileVersion>1.7$(ReleaseVersion)</FileVersion>
<InformationalVersion>1.7.$([System.DateTime]::Now.Year).$([System.DateTime]::Now.Month).$([System.DateTime]::Now.Day)@$(TargetFramework)#sn:$(Sign)#$(ReleaseRevision)</InformationalVersion>
<Version>1.7$(ReleaseVersion)$(ReleaseSuffix)</Version>
<Product>Enyim Memcached</Product>
<Title>Enyim Memcached</Title>
<Description>High performance Memcached client on .NET Standard 2.x/.NET Core 2.x+, incorporating both synchronous and asynchronous with various transcoders (Binary, BSON, ProtoBuf, MsgPack)</Description>
<Copyright>© 2010 Attila Kiskó, © 2016 CNBlogs, © 2020 VIEApps.net</Copyright>
<Authors>VIEApps.net</Authors>
<Company>VIEApps.net</Company>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<SignAssembly>$(Sign)</SignAssembly>
<AssemblyOriginatorKeyFile>../VIEApps.Components.snk</AssemblyOriginatorKeyFile>
<DefineConstants>$(SignConstant)</DefineConstants>
<GeneratePackageOnBuild>$(GeneratePackage)</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageId>VIEApps.Enyim.Caching$(PackageSuffix)</PackageId>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>Icon.png</PackageIcon>
<PackageOutputPath>../</PackageOutputPath>
<PackageTags>cache;caching;distributed;distributed-cache;memcached;enyim;enyim-memcached;enyim-caching;vieapps;vieapps.components</PackageTags>
<PackageReleaseNotes>Upgrade to latest components</PackageReleaseNotes>
<PackageProjectUrl>https://vieapps.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/vieapps/Enyim.Caching</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Remove=".DS_Store" />
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="README.md" />
<None Visible="false" Include="LICENSE.md" Pack="true" PackagePath="\" />
<None Visible="false" Include="Icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="3.1.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.1.8" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="1.3.5" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>
</Project>