Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
5cf5c8c1
Commit
5cf5c8c1
authored
Aug 28, 2018
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change targets to include net461 and net472 (fix #921)
parent
026a07e9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
4 deletions
+7
-4
Directory.Build.props
Directory.Build.props
+1
-0
global.json
global.json
+1
-1
NRediSearch.csproj
src/NRediSearch/NRediSearch.csproj
+1
-1
StackExchange.Redis.StrongName.csproj
...ge.Redis.StrongName/StackExchange.Redis.StrongName.csproj
+1
-1
StackExchange.Redis.csproj
src/StackExchange.Redis/StackExchange.Redis.csproj
+2
-1
Parse.cs
tests/StackExchange.Redis.Tests/Parse.cs
+1
-0
No files found.
Directory.Build.props
View file @
5cf5c8c1
...
...
@@ -4,6 +4,7 @@
<Copyright>2017 Stack Exchange, Inc.</Copyright>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LibTargetFrameworks>net461;netstandard2.0;net472</LibTargetFrameworks>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)StackExchange.Redis.snk</AssemblyOriginatorKeyFile>
<PackageId>$(AssemblyName)</PackageId>
<Features>strict</Features>
...
...
global.json
View file @
5cf5c8c1
{
"sdk"
:
{
"version"
:
"2.1.
300
"
"version"
:
"2.1.
401
"
}
}
\ No newline at end of file
src/NRediSearch/NRediSearch.csproj
View file @
5cf5c8c1
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>
netstandard2.0
</TargetFrameworks>
<TargetFrameworks>
$(LibTargetFrameworks)
</TargetFrameworks>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<PackageTags>Redis;Search;Modules;RediSearch</PackageTags>
<SignAssembly>true</SignAssembly>
...
...
src/StackExchange.Redis.StrongName/StackExchange.Redis.StrongName.csproj
View file @
5cf5c8c1
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>
netstandard2.0
</TargetFrameworks>
<TargetFrameworks>
$(LibTargetFrameworks)
</TargetFrameworks>
<Description>High performance Redis client, incorporating both synchronous and asynchronous usage.</Description>
<AssemblyTitle>StackExchange.Redis.StrongName</AssemblyTitle>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
...
...
src/StackExchange.Redis/StackExchange.Redis.csproj
View file @
5cf5c8c1
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>
netstandard2.0
</TargetFrameworks>
<TargetFrameworks>
$(LibTargetFrameworks)
</TargetFrameworks>
<Description>High performance Redis client, incorporating both synchronous and asynchronous usage.</Description>
<AssemblyName>StackExchange.Redis</AssemblyName>
<AssemblyTitle>StackExchange.Redis</AssemblyTitle>
...
...
@@ -23,5 +23,6 @@
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="4.5.0" />
<PackageReference Include="System.IO.Pipelines" Version="4.5.0" />
<PackageReference Include="System.Threading.Channels" Version="4.5.0" />
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
</ItemGroup>
</Project>
\ No newline at end of file
tests/StackExchange.Redis.Tests/Parse.cs
View file @
5cf5c8c1
...
...
@@ -82,6 +82,7 @@ public FragmentedSegment(long runningIndex, ReadOnlyMemory<T> memory)
RunningIndex
=
runningIndex
;
Memory
=
memory
;
}
public
new
FragmentedSegment
<
T
>
Next
{
get
=>
(
FragmentedSegment
<
T
>)
base
.
Next
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment