Skip to content

Commit 69897ca

Browse files
committed
fix package metadata
1 parent f460fb4 commit 69897ca

File tree

7 files changed

+7
-4
lines changed

7 files changed

+7
-4
lines changed

Directory.build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@
2323
<DefaultLanguage>en-US</DefaultLanguage>
2424
<IncludeSymbols>false</IncludeSymbols>
2525

26-
<TargetFrameworks>net45;net46;netstandard1.5</TargetFrameworks><!--net40;-->
26+
<LibraryTargetFrameworks>net45;net46;netstandard1.5</LibraryTargetFrameworks><!--net40;-->
2727
<CoreFxVersion>4.3.0</CoreFxVersion>
28-
2928
</PropertyGroup>
3029

3130
<ItemGroup>

NRediSearch.Test/NRediSearch.Test.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp1.1</TargetFramework>
5-
<TargetFrameworks>$(TargetFramework)</TargetFrameworks>
65
<GenerateDocumentationFile>false</GenerateDocumentationFile>
76
</PropertyGroup>
87

NRediSearch/NRediSearch.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFrameworks>$(LibraryTargetFrameworks)</TargetFrameworks>
45
<VersionPrefix>0.1</VersionPrefix>
56
<GenerateDocumentationFile>false</GenerateDocumentationFile>
7+
<PackageTags>Redis;Search;RediSearch</PackageTags>
68
</PropertyGroup>
79
<ItemGroup>
810
<ProjectReference Include="..\StackExchange.Redis\StackExchange.Redis.csproj" />

StackExchange.Redis.StrongName/StackExchange.Redis.StrongName.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFrameworks>$(LibraryTargetFrameworks)</TargetFrameworks>
45
<Description>High performance Redis client, incorporating both synchronous and asynchronous usage.</Description>
56
<AssemblyTitle>StackExchange.Redis.StrongName</AssemblyTitle>
67
<DefineConstants>$(DefineConstants);STRONG_NAME</DefineConstants>

StackExchange.Redis.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ VisualStudioVersion = 15.0.26403.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3AD17044-6BFF-4750-9AC2-2CA466375F2A}"
77
ProjectSection(SolutionItems) = preProject
8+
Directory.build.props = Directory.build.props
89
NuGet.Config = NuGet.Config
910
EndProjectSection
1011
EndProject

StackExchange.Redis/StackExchange.Redis.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<TargetFrameworks>$(LibraryTargetFrameworks)</TargetFrameworks>
45
<Description>High performance Redis client, incorporating both synchronous and asynchronous usage.</Description>
56
<AssemblyTitle>StackExchange.Redis</AssemblyTitle>
67
<GenerateDocumentationFile>true</GenerateDocumentationFile>

docs/ReleaseNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- improved connection retry policy (#510, #572)
1111
- add `Execute`/`ExecuteAsync` API to support "modules"; [more info](http://blog.marcgravell.com/2017/04/stackexchangeredis-and-redis-40-modules.html)
1212
- fix: timeout link fixed re /docs change (below)
13-
- [`NRediSearch`](https://www.nuget.org/packages/NRediSearch/) added as exploration into "modules" - note that this requires [StackExchange.Redis 1.2.2](https://www.nuget.org/packages/StackExchange.Redis/1.2.2) (the package incorrectly specifies 1.2.0, still investigating why)
13+
- [`NRediSearch`](https://www.nuget.org/packages/NRediSearch/) added as exploration into "modules"
1414

1515
Other changes (not library related)
1616

0 commit comments

Comments
 (0)