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

Commit 6fc976f

Browse files
committed
Fix package install bug on .NET 4.x projects
1 parent c4f1f76 commit 6fc976f

File tree

4 files changed

+12
-22
lines changed

4 files changed

+12
-22
lines changed

Stormpath.SDK.nuspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Stormpath.SDK</id>
5-
<version>0.92.0</version>
5+
<version>0.92.1</version>
66
<authors>Nate Barbettini</authors>
77
<owners>Stormpath, Inc.</owners>
88
<licenseUrl>https://github.com/stormpath/stormpath-sdk-csharp/blob/master/LICENSE</licenseUrl>
@@ -14,13 +14,13 @@
1414
<tags>Stormpath API Authentication Authorization REST</tags>
1515
<dependencies>
1616
<group targetFramework=".NETStandard1.3">
17-
<dependency id="Stormpath.SDK.Core" version="[0.92.0, )" />
18-
<dependency id="Stormpath.SDK.Http.SystemNetHttpClient" version="[0.91.0, )" />
17+
<dependency id="Stormpath.SDK.Core" version="[0.92.1, )" />
18+
<dependency id="Stormpath.SDK.Http.SystemNetHttpClient" version="[0.91.1, )" />
1919
<dependency id="Stormpath.SDK.JsonNetSerializer" version="[0.91.0, )" />
2020
</group>
2121
<group targetFramework=".NETFramework4.5">
22-
<dependency id="Stormpath.SDK.Core" version="[0.92.0, )" />
23-
<dependency id="Stormpath.SDK.RestSharpClient" version="[0.91.0, )" />
22+
<dependency id="Stormpath.SDK.Core" version="[0.92.1, )" />
23+
<dependency id="Stormpath.SDK.RestSharpClient" version="[0.91.1, )" />
2424
<dependency id="Stormpath.SDK.JsonNetSerializer" version="[0.91.0, )" />
2525
</group>
2626
</dependencies>

src/Stormpath.SDK.Core/project.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,10 @@
2020
"frameworks": {
2121
"net45": {
2222
"frameworkAssemblies": {
23-
"System.Collections": "4.0.0.0",
24-
"System.IO": "4.0.0.0",
25-
"System.Linq.Expressions": "4.0.0.0",
26-
"System.Net.Primitives": "4.0.0.0",
27-
"System.Reflection": "4.0.0.0",
2823
"System.Runtime": {
2924
"type": "build",
3025
"version": "4.0.0.0"
31-
},
32-
"System.Text.Encoding": "4.0.0.0",
33-
"System.Threading.Tasks": "4.0.0.0"
26+
}
3427
}
3528
},
3629
"netstandard1.3": {
@@ -55,5 +48,5 @@
5548
"tooling": {
5649
"defaultNamespace": "Stormpath.SDK"
5750
},
58-
"version": "0.92.0"
51+
"version": "0.92.1"
5952
}

src/Stormpath.SDK.Http.SystemNetHttpClient/project.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
1111
"dependencies": {
1212
"Stormpath.SDK.Abstractions": {
1313
"target": "project",
14-
"version": "0.91.0"
14+
"version": "0.92.0"
1515
}
1616
},
1717
"description": "System.Net.Http plugin for the Stormpath .NET SDK.",
1818
"frameworks": {
1919
"net45": {
2020
"frameworkAssemblies": {
2121
"System.Net.Http": "4.0.0.0",
22-
"System.Net.Primitives": "4.0.0.0",
2322
"System.Runtime": {
2423
"type": "build",
2524
"version": "4.0.0.0"
@@ -46,5 +45,5 @@
4645
"tooling": {
4746
"defaultNamespace": "Stormpath.SDK.Http.SystemNetHttpClient"
4847
},
49-
"version": "0.91.0"
48+
"version": "0.91.1"
5049
}

src/Stormpath.SDK.RestSharpClient/project.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,17 @@
1212
"RestSharp": "105.2.3",
1313
"Stormpath.SDK.Abstractions": {
1414
"target": "project",
15-
"version": "0.91.0"
15+
"version": "0.92.0"
1616
}
1717
},
1818
"description": "RestSharp HTTP plugin for the Stormpath .NET SDK.",
1919
"frameworks": {
2020
"net45": {
2121
"frameworkAssemblies": {
22-
"System.Net.Primitives": "4.0.0.0",
2322
"System.Runtime": {
2423
"type": "build",
2524
"version": "4.0.0.0"
26-
},
27-
"System.Threading.Tasks": "4.0.0.0"
25+
}
2826
}
2927
}
3028
},
@@ -41,5 +39,5 @@
4139
"tooling": {
4240
"defaultNamespace": "Stormpath.SDK.Extensions.Http"
4341
},
44-
"version": "0.91.0"
42+
"version": "0.91.1"
4543
}

0 commit comments

Comments
 (0)