Skip to content

Commit eba58d2

Browse files
author
Ganeshram Chockalingam
committed
Versioning
1 parent 979a632 commit eba58d2

File tree

9 files changed

+5
-46
lines changed

9 files changed

+5
-46
lines changed

.vs/CheckoutNETSDK/xs/sqlite3/db.lock

Whitespace-only changes.
-3.43 MB
Binary file not shown.

.vscode/launch.json

Lines changed: 0 additions & 28 deletions
This file was deleted.

.vscode/tasks.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

PayPalCheckoutSdk/Core/PaypalHttpClient.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ private HttpResponse fetchAccessToken()
6060
//create a new client for acceess token.
6161
HttpClient AccessTokenClient = new HttpClient(environment);
6262
AccessTokenRequest request = new AccessTokenRequest(environment, refreshToken);
63+
var executeTask = this.client.Execute(request);
6364
//make fetch access token call sync to avoid deadlock.
6465
Task<HttpResponse> executeTask = Task.Run<HttpResponse>(async () => await AccessTokenClient.Execute(request));
6566
return executeTask.Result;

PayPalCheckoutSdk/Core/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace PayPalCheckoutSdk.Core
22
{
33
public class Version
44
{
5-
public static string VERSION = "2.0.0-rc2";
5+
public static string VERSION = "2.0.2";
66
}
77
}

PayPalCheckoutSdk/PayPalCheckoutSdk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<PackageVersion>1.0.0</PackageVersion>
5+
<PackageVersion>1.0.2</PackageVersion>
66
</PropertyGroup>
77

88
<ItemGroup>

Samples/Samples.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.1</TargetFramework>
6+
<PackageVersion>1.0.2</PackageVersion>
67
</PropertyGroup>
78

89
<ItemGroup>

Test/Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
5-
5+
<PackageVersion>1.0.1</PackageVersion>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)