Skip to content

Commit

Permalink
Set minClientVersion to nuspec. #177
Browse files Browse the repository at this point in the history
NuGet 2.x does not support .NET Standard, so they fail to parse msgpack.nuspec file as 0.7.0.
This commit set minimum version restriction which just prevents confusing error. This fix actually does not solve the problem, it still says the client should update nuget to 2.12 or 3.x, but it gives hint to the solution.
Note: this solution is also used in corefx packages.
  • Loading branch information
yfakariya committed Feb 2, 2017
1 parent 0d85ca4 commit ee46204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MsgPack.nuspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<metadata minClientVersion="2.12">
<id>MsgPack.Cli</id>
<title>MessagePack for CLI</title>
<version>0.0.0-development</version>
Expand Down

0 comments on commit ee46204

Please sign in to comment.