Oops, my bad. Added LI fix. release 1.17.1

This commit is contained in:
Jerrie Pelser
2015-04-09 11:33:37 +07:00
parent 1e6f75df06
commit c03cb2b784
3 changed files with 6 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
<package >
<metadata>
<id>Owin.Security.Providers</id>
<version>1.17.0</version>
<version>1.17.1</version>
<authors>Jerrie Pelser and contributors</authors>
<owners>Jerrie Pelser</owners>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>

View File

@@ -48,6 +48,9 @@ namespace Owin.Security.Providers.LinkedIn
Timeout = Options.BackchannelTimeout,
MaxResponseContentBufferSize = 1024*1024*10
};
// Fix for LinkedIn Expect: 100- continue issue
httpClient.DefaultRequestHeaders.ExpectContinue = false;
}
/// <summary>

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.17.0.0")]
[assembly: AssemblyFileVersion("1.17.0.0")]
[assembly: AssemblyVersion("1.17.1.0")]
[assembly: AssemblyFileVersion("1.17.1.0")]