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

Commit 0fe5c71

Browse files
committed
Fixed NuGet package for Xamarin.iOS and its BCL dependencies.
1 parent 726ebe8 commit 0fe5c71

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

RestSharp.Portable.nuspec

+9-1
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,30 @@ Supported Platforms:
2020
- Portable Class Libraries</description>
2121
<summary>Some kind of a RestSharp port to PCL</summary>
2222
<releaseNotes>- Clear Accept HTTP header parameter for the SL5 platform for GET requests
23-
- Add platform specific assemblies</releaseNotes>
23+
- Add platform specific assemblies
24+
- Fixed the Xamarin.iOS target
25+
- Fixed dependencies by explicitly specifying Microsoft.Bcl and Microsoft.Bcl.Build</releaseNotes>
2426
<copyright>Copyright © Mark Junker</copyright>
2527
<language>en-US</language>
2628
<tags>PCL RestSharp portable</tags>
2729
<dependencies>
2830
<group targetFramework="portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+MonoTouch10+Xamarin.iOS10">
31+
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
32+
<dependency id="Microsoft.Bcl" version="1.1.9" />
2933
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
3034
<dependency id="Microsoft.Net.Http" version="2.2.28" />
3135
<dependency id="Newtonsoft.Json" version="6.0.5" />
3236
</group>
3337
<group targetFramework="net40">
38+
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
39+
<dependency id="Microsoft.Bcl" version="1.1.9" />
3440
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
3541
<dependency id="Microsoft.Net.Http" version="2.2.28" />
3642
<dependency id="Newtonsoft.Json" version="6.0.5" />
3743
</group>
3844
<group targetFramework="sl50">
45+
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
46+
<dependency id="Microsoft.Bcl" version="1.1.9" />
3947
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
4048
<dependency id="Microsoft.Net.Http" version="2.2.28" />
4149
<dependency id="Newtonsoft.Json" version="6.0.5" />

SharedAssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[assembly: AssemblyDescription("")]
88
[assembly: AssemblyConfiguration("")]
99
[assembly: AssemblyCompany("Fubar Development Junker, RestSharp.Portable community and others")]
10-
[assembly: AssemblyCopyright("Copyright © RestSharp.Portable project 2013-2014")]
10+
[assembly: AssemblyCopyright("Copyright © RestSharp.Portable project 2013-2015")]
1111
[assembly: AssemblyTrademark("")]
1212
[assembly: AssemblyCulture("")]
1313
[assembly: NeutralResourcesLanguage("en")]
@@ -23,5 +23,5 @@
2323
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
2424
// [assembly: AssemblyVersion("1.0.*")]
2525
[assembly: AssemblyVersion("2.0.0")]
26-
[assembly: AssemblyFileVersion("2.0.0")]
27-
[assembly: AssemblyInformationalVersion("2.0.0")]
26+
[assembly: AssemblyFileVersion("2.0.1")]
27+
[assembly: AssemblyInformationalVersion("2.0.1")]

nuget-pack.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[OutputType([void])]
22
param(
33
[Parameter()]
4-
$version = "2.0.0",
4+
$version = "2.0.1",
55
[Parameter()]
66
$config = "Release"
77
)

0 commit comments

Comments
 (0)