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

Commit

Permalink
Fixed NuGet package for Xamarin.iOS and its BCL dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
fubar-coder committed Jan 3, 2015
1 parent 726ebe8 commit 0fe5c71
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion RestSharp.Portable.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,30 @@ Supported Platforms:
- Portable Class Libraries</description>
<summary>Some kind of a RestSharp port to PCL</summary>
<releaseNotes>- Clear Accept HTTP header parameter for the SL5 platform for GET requests
- Add platform specific assemblies</releaseNotes>
- Add platform specific assemblies
- Fixed the Xamarin.iOS target
- Fixed dependencies by explicitly specifying Microsoft.Bcl and Microsoft.Bcl.Build</releaseNotes>
<copyright>Copyright © Mark Junker</copyright>
<language>en-US</language>
<tags>PCL RestSharp portable</tags>
<dependencies>
<group targetFramework="portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+MonoTouch10+Xamarin.iOS10">
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
<dependency id="Microsoft.Bcl" version="1.1.9" />
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
<dependency id="Microsoft.Net.Http" version="2.2.28" />
<dependency id="Newtonsoft.Json" version="6.0.5" />
</group>
<group targetFramework="net40">
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
<dependency id="Microsoft.Bcl" version="1.1.9" />
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
<dependency id="Microsoft.Net.Http" version="2.2.28" />
<dependency id="Newtonsoft.Json" version="6.0.5" />
</group>
<group targetFramework="sl50">
<dependency id="Microsoft.Bcl.Build" version="1.0.21" />
<dependency id="Microsoft.Bcl" version="1.1.9" />
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
<dependency id="Microsoft.Net.Http" version="2.2.28" />
<dependency id="Newtonsoft.Json" version="6.0.5" />
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Fubar Development Junker, RestSharp.Portable community and others")]
[assembly: AssemblyCopyright("Copyright © RestSharp.Portable project 2013-2014")]
[assembly: AssemblyCopyright("Copyright © RestSharp.Portable project 2013-2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en")]
Expand All @@ -23,5 +23,5 @@
// durch Einsatz von '*', wie in nachfolgendem Beispiel:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
[assembly: AssemblyInformationalVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.1")]
[assembly: AssemblyInformationalVersion("2.0.1")]
2 changes: 1 addition & 1 deletion nuget-pack.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[OutputType([void])]
param(
[Parameter()]
$version = "2.0.0",
$version = "2.0.1",
[Parameter()]
$config = "Release"
)
Expand Down

0 comments on commit 0fe5c71

Please sign in to comment.