Skip to content

Commit aa72393

Browse files
committed
Update to SimpleRESTServices 1.2.0.0
1 parent 82c22d4 commit aa72393

14 files changed

Lines changed: 1993 additions & 31 deletions

File tree

src/console/console.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
<SpecificVersion>False</SpecificVersion>
4040
<HintPath>..\packages\Newtonsoft.Json.5.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
4141
</Reference>
42-
<Reference Include="SimpleRESTServices, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
42+
<Reference Include="SimpleRESTServices, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
4343
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>..\packages\SimpleRESTServices.1.1.3.0\lib\net40\SimpleRESTServices.dll</HintPath>
44+
<HintPath>..\packages\SimpleRESTServices.1.2.0.0\lib\net40\SimpleRESTServices.dll</HintPath>
4545
</Reference>
4646
<Reference Include="System" />
4747
<Reference Include="System.Core" />

src/console/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="5.0.6" targetFramework="net40" />
4-
<package id="SimpleRESTServices" version="1.1.3.0" targetFramework="net40" />
4+
<package id="SimpleRESTServices" version="1.2.0.0" targetFramework="net40" />
55
</packages>

src/corelib/corelib.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
<SpecificVersion>False</SpecificVersion>
3939
<HintPath>..\packages\Newtonsoft.Json.5.0.6\lib\net40\Newtonsoft.Json.dll</HintPath>
4040
</Reference>
41-
<Reference Include="SimpleRESTServices, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
41+
<Reference Include="SimpleRESTServices, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
4242
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>..\packages\SimpleRESTServices.1.1.3.0\lib\net40\SimpleRESTServices.dll</HintPath>
43+
<HintPath>..\packages\SimpleRESTServices.1.2.0.0\lib\net40\SimpleRESTServices.dll</HintPath>
4444
</Reference>
4545
<Reference Include="System" />
4646
<Reference Include="System.Core" />

src/corelib/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="5.0.6" targetFramework="net40" />
4-
<package id="SimpleRESTServices" version="1.1.3.0" targetFramework="net40" />
4+
<package id="SimpleRESTServices" version="1.2.0.0" targetFramework="net40" />
55
</packages>
Binary file not shown.

src/packages/SimpleRESTServices.1.1.3.0/SimpleRESTServices.1.1.3.0.nuspec renamed to src/packages/SimpleRESTServices.1.2.0.0/SimpleRESTServices.1.2.0.0.nuspec

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>SimpleRESTServices</id>
5-
<version>1.1.3.0</version>
5+
<version>1.2.0.0</version>
66
<title>SimpleRESTServices</title>
7-
<authors>Alan Quillin</authors>
8-
<owners>Alan Quillin</owners>
7+
<authors>Alan Quillin, Sam Harwell</authors>
8+
<owners>Alan Quillin, Sam Harwell</owners>
99
<licenseUrl>https://github.com/JSIStudios/SimpleRestServices/wiki/License</licenseUrl>
1010
<projectUrl>https://github.com/JSIStudios/SimpleRestServices</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<description>A simple set of client side and server side REST helpers</description>
13-
<releaseNotes>https://github.com/JSIStudios/SimpleRestServices/wiki/v1.1.3.0</releaseNotes>
13+
<releaseNotes>https://github.com/JSIStudios/SimpleRestServices/wiki/v1.2.0.0</releaseNotes>
1414
<copyright>Copyright © JSI Studios 2013</copyright>
1515
<tags>REST REST_client</tags>
16-
<dependencies>
17-
<dependency id="Newtonsoft.Json" version="5.0.6" />
18-
</dependencies>
1916
</metadata>
2017
</package>
Binary file not shown.

src/packages/SimpleRESTServices.1.2.0.0/lib/net35/SimpleRESTServices.xml

Lines changed: 1965 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.

src/packages/SimpleRESTServices.1.1.3.0/lib/net40/SimpleRESTServices.xml renamed to src/packages/SimpleRESTServices.1.2.0.0/lib/net40/SimpleRESTServices.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
131131
<exception cref="T:System.UriFormatException">If <paramref name="url" /> is not a valid base URI.</exception>
132132
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
133-
<exception cref="!:StringSerializationException">
133+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
134134
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
135135
</exception>
136136
</member>
@@ -223,7 +223,7 @@
223223
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
224224
<exception cref="T:System.UriFormatException">If <paramref name="url" /> is not a valid base URI.</exception>
225225
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
226-
<exception cref="!:StringSerializationException">
226+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
227227
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
228228
</exception>
229229
</member>
@@ -312,7 +312,7 @@
312312
and strongly-typed data from the REST response.</returns>
313313
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
314314
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
315-
<exception cref="!:StringSerializationException">
315+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
316316
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
317317
</exception>
318318
</member>
@@ -374,7 +374,7 @@
374374
and strongly-typed data from the REST response.</returns>
375375
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
376376
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
377-
<exception cref="!:StringSerializationException">
377+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
378378
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
379379
</exception>
380380
</member>
@@ -422,7 +422,7 @@
422422
<para>-or-</para><para>If <paramref name="maxReadLength" /> is less than zero.</para></exception>
423423
<exception cref="T:System.UriFormatException">If <paramref name="url" /> is not a valid base URI.</exception>
424424
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
425-
<exception cref="!:StringSerializationException">
425+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
426426
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
427427
</exception>
428428
</member>
@@ -513,7 +513,7 @@
513513
If <paramref name="bufferSize" /> is less than or equal to zero.
514514
<para>-or-</para><para>If <paramref name="maxReadLength" /> is less than zero.</para></exception>
515515
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
516-
<exception cref="!:StringSerializationException">
516+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
517517
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
518518
</exception>
519519
</member>
@@ -925,7 +925,7 @@
925925
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
926926
<exception cref="T:System.UriFormatException">If <paramref name="url" /> is not a valid base URI.</exception>
927927
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
928-
<exception cref="!:StringSerializationException">
928+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
929929
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
930930
</exception>
931931
</member>
@@ -1112,7 +1112,7 @@
11121112
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
11131113
<exception cref="T:System.UriFormatException">If <paramref name="url" /> is not a valid base URI.</exception>
11141114
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
1115-
<exception cref="!:StringSerializationException">
1115+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
11161116
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
11171117
</exception>
11181118
</member>
@@ -1173,7 +1173,7 @@
11731173
and strongly-typed data from the REST response.</returns>
11741174
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
11751175
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
1176-
<exception cref="!:StringSerializationException">
1176+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
11771177
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
11781178
</exception>
11791179
</member>
@@ -1278,7 +1278,7 @@
12781278
and strongly-typed data from the REST response.</returns>
12791279
<exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception>
12801280
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
1281-
<exception cref="!:StringSerializationException">
1281+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
12821282
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
12831283
</exception>
12841284
</member>
@@ -1546,7 +1546,7 @@
15461546
<para>-or-</para><para>If <paramref name="maxReadLength" /> is less than zero.</para></exception>
15471547
<exception cref="T:System.UriFormatException">If <paramref name="url" /> is not a valid base URI.</exception>
15481548
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
1549-
<exception cref="!:StringSerializationException">
1549+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
15501550
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
15511551
</exception>
15521552
</member>
@@ -1642,7 +1642,7 @@
16421642
If <paramref name="bufferSize" /> is less than or equal to zero.
16431643
<para>-or-</para><para>If <paramref name="maxReadLength" /> is less than zero.</para></exception>
16441644
<exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception>
1645-
<exception cref="!:StringSerializationException">
1645+
<exception cref="T:JSIStudios.SimpleRESTServices.Client.Json.StringSerializationException">
16461646
If the body of the response could not be deserialized to an object of type <typeparamref name="T" />.
16471647
</exception>
16481648
</member>

0 commit comments

Comments
 (0)