Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 5b5e2dc

Browse files
committed
upgrade deps
1 parent 680962d commit 5b5e2dc

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.vscode/tasks.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "dotnet",
6-
"isShellCommand": true,
76
"args": [],
87
"tasks": [
98
{
10-
"taskName": "build",
11-
"args": [ "tests/ServiceStack.Redis.Tests"],
12-
"isBuildCommand": true,
13-
"showOutput": "silent",
14-
"problemMatcher": "$msCompile"
9+
"label": "build",
10+
"type": "shell",
11+
"command": "dotnet",
12+
"args": [
13+
"build",
14+
"tests/ServiceStack.Redis.Tests"
15+
],
16+
"problemMatcher": "$msCompile",
17+
"group": "build"
1518
}
1619
]
1720
}

tests/ServiceStack.Redis.Tests.Sentinel/ServiceStack.Redis.Tests.Sentinel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</PropertyGroup>
4747

4848
<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
49-
<PackageReference Include="Microsoft.Extensions.Primitives" Version="2.1.1" />
49+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="2.2.0" />
5050
</ItemGroup>
5151

5252
</Project>

tests/ServiceStack.Redis.Tests/ServiceStack.Redis.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
<Reference Include="Microsoft.CSharp" />
5151
</ItemGroup>
5252
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
53-
<PackageReference Include="Microsoft.Extensions.Primitives" Version="2.1.1" />
53+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="2.2.0" />
5454
</ItemGroup>
5555
</Project>

0 commit comments

Comments
 (0)