-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetPro.RedisManager.csproj
42 lines (41 loc) · 2.11 KB
/
NetPro.RedisManager.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetStandardTargetVersion)</TargetFramework>
<Version>$(NetProRedisManager)</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>$(Authors)</Authors>
<Description>
</Description>
<PackageProjectUrl>$(PackageProjectUrl)</PackageProjectUrl>
<PackageIcon>$(PackageIcon)</PackageIcon>
<AssemblyName>$(NetProRedisManagerAssemblyName)</AssemblyName>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netcoreapp3.1\NetPro.RedisManager.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netcoreapp3.1\NetPro.RedisManager.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(PackageIconPath)">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.9" />
<PackageReference Include="StackExchange.Redis" Version="2.1.58" />
<PackageReference Include="RedLock.net" Version="$(RedLocknet)" />
<PackageReference Include="CSRedisCore" Version="3.6.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.9" />
<!--<PackageReference Include="System.Text.Json" Version="4.7.2" />-->
</ItemGroup>
<Target Name="CopyPackage" AfterTargets="Pack" Condition="'$(OS)' == 'Windows_NT' and Exists('$(SolutionDir)\PushNuget') and '$(Configuration)' == 'Release'">
<Copy SourceFiles="$(ProjectDir)\bin\Release\$(PackageId).$(PackageVersion).nupkg" DestinationFolder="$(SolutionDir)\PushNuget" />
</Target>
</Project>