Skip to content

Commit

Permalink
Updated packages and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
imperugo committed Jul 3, 2020
1 parent 90f97bb commit fce8c4b
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 5 deletions.
31 changes: 30 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,35 @@
"kind": "build",
"isDefault": true
}
}
},
{
"label": "update all packages",
"command": "dotnet",
"type": "process",
"args": [
"outdated",
"-u"
],
"dependsOn": [
"clean nuget http cache"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "clean nuget http cache",
"command": "dotnet",
"type": "process",
"args": [
"nuget",
"locals",
"--clear",
"http-cache"
],
"problemMatcher": "$msCompile"
},
]
}
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- General information -->
<PropertyGroup>
<Authors>Ugo Lattanzi</Authors>
<VersionPrefix>6.3.0</VersionPrefix>
<VersionPrefix>6.3.1</VersionPrefix>
<!-- <VersionSuffix>pre</VersionSuffix> -->
<TargetFrameworks>netstandard2.0;net461;net472;netcoreapp3.0;netcoreapp3.1</TargetFrameworks>
<IncludeSource>True</IncludeSource>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="StackExchange.Redis" Version="2.1.55" />
<PackageReference Include="StackExchange.Redis" Version="2.1.58" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.0' or '$(TargetFramework)' == 'netcoreapp3.1'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="protobuf-net" Version="2.4.6" />
<PackageReference Include="protobuf-net" Version="3.0.13" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit.categories" Version="2.0.4" />
<PackageReference Include="Moq" Version="4.14.2" />
<PackageReference Include="Moq" Version="4.14.5" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit fce8c4b

Please sign in to comment.