Skip to content

Commit e23ffab

Browse files
authored
Merge pull request AuthorizeNet#255 from AuthorizeNet/future
Remove CoffeeShop Sample App & update version
2 parents 292dc38 + 605b068 commit e23ffab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+8
-1583
lines changed

Authorize.NET/AuthorizeNET.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
<Reference Include="System.Security" />
5656
</ItemGroup>
5757
<ItemGroup>
58-
<Compile Include="*.cs" />
58+
<Compile Include="Environment.cs" />
59+
<Compile Include="MarketType.cs" />
60+
<Compile Include="TestFriends.cs" />
5961
<Compile Include="Api\Contracts\V1\*.cs" />
6062
<Compile Include="Api\Controllers\ARBCancelSubscriptionController.cs" />
6163
<Compile Include="Api\Controllers\ARBCreateSubscriptionController.cs" />

Authorize.NET/Merchant.cs

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

Authorize.NET/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// Revision
3131
//
3232
// See AssemblyFileVersion.cs for Product and Assembly Version
33-
//[assembly: AssemblyVersion("1.9.6.0")]
34-
[assembly: AssemblyFileVersion("1.9.7.0")]
35-
[assembly: AssemblyVersion("1.9.7.0")]
33+
//[assembly: AssemblyVersion("1.9.7.0")]
34+
[assembly: AssemblyFileVersion("1.9.8.0")]
35+
[assembly: AssemblyVersion("1.9.8.0")]
3636

Authorize.NET/Util/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static class Constants {
2626
public const int HttpConnectionDefaultTimeout = 30000;
2727
public const int HttpReadWriteDefaultTimeout = 30000;
2828

29-
public const string SDKVersion = "1.9.7";
29+
public const string SDKVersion = "1.9.8";
3030

3131
}
3232
#pragma warning restore 1591

AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public abstract class ApiCoreTestBase {
2727
protected static AuthorizeNet.Environment TestEnvironment = AuthorizeNet.Environment.SANDBOX;
2828
//protected static AuthorizeNet.Environment TestEnvironment = AuthorizeNet.Environment.HOSTED_VM;
2929

30-
static Merchant _merchant ;
3130
static readonly String ApiLoginIdKey ;
3231
static readonly String TransactionKey ;
3332
static String _md5HashKey ;
@@ -91,15 +90,6 @@ static ApiCoreTestBase() {
9190
"LoginId and/or TransactionKey have not been set. Merchant keys are required.");
9291
}
9392

94-
if (null != ApiLoginIdKey && null != TransactionKey)
95-
{
96-
_merchant = Merchant.CreateMerchant(TestEnvironment, ApiLoginIdKey, TransactionKey);
97-
}
98-
if (null == _merchant)
99-
{
100-
Assert.Fail("Merchant logins have been set");
101-
}
102-
10393
ErrorMessages = new Dictionary<string, string>();
10494
}
10595

AuthorizeNet.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>AuthorizeNet</id>
5-
<version>1.9.7</version>
5+
<version>1.9.8</version>
66
<title>AuthorizeNet</title>
77
<authors>Authorize.Net</authors>
88
<owners>AuthorizeNet</owners>

CoffeeShopWebApp/Coffee.aspx

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

CoffeeShopWebApp/Coffee.aspx.cs

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

CoffeeShopWebApp/Coffee.aspx.designer.cs

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

CoffeeShopWebApp/CoffeeShopWebApp.csproj

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

0 commit comments

Comments
 (0)