Skip to content

Commit 823c881

Browse files
authored
Merge pull request #108 from snavinch/master
June 2021 SDK Release
2 parents e946da4 + 41dbce2 commit 823c881

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("0.0.1.12")]
32-
[assembly: AssemblyFileVersion("0.0.1.12")]
31+
[assembly: AssemblyVersion("0.0.1.13")]
32+
[assembly: AssemblyFileVersion("0.0.1.13")]

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,20 @@ For more detailed information on OAuth, refer to the documentation at [Cybersour
5656
In order to use OAuth, set the run environment to OAuth enabled URLs. OAuth only works in these run environments.
5757

5858
```csharp
59-
// For TESTING use
60-
_configurationDictionary.Add("runEnvironment", "cybersource.environment.mutualauth.sandbox")
61-
// For PRODUCTION use
62-
// _configurationDictionary.Add("runEnvironment", "cybersource.environment.mutualauth.production")
63-
```
59+
// For TESTING use
60+
_configurationDictionary.Add("runEnvironment", "api-matest.cybersource.com")
61+
// For PRODUCTION use
62+
// _configurationDictionary.Add("runEnvironment", "api-ma.cybersource.com")
63+
```
6464

6565
### Switching between the sandbox environment and the production environment
6666
Cybersource maintains a complete sandbox environment for testing and development purposes. This sandbox environment is an exact duplicate of our production environment with the transaction authorization and settlement process simulated. By default, this SDK is configured to communicate with the sandbox environment. To switch to the production environment, set the `runEnvironment` property in the SDK Configuration. See our sample at https://github.com/CyberSource/cybersource-rest-samples-csharp/blob/master/src/Configuration.cs.
6767

6868
```csharp
69-
// For TESTING use
70-
_configurationDictionary.Add("runEnvironment", "cybersource.environment.sandbox");
71-
// For PRODUCTION use
72-
// _configurationDictionary.Add("runEnvironment", "cybersource.environment.production");
69+
// For TESTING use
70+
_configurationDictionary.Add("runEnvironment", "apitest.cybersource.com");
71+
// For PRODUCTION use
72+
// _configurationDictionary.Add("runEnvironment", "api.cybersource.com");
7373
```
7474

7575
API credentials are different for each environment, so be sure to switch to the appropriate credentials when switching environments.

cybersource-rest-client-dotnet.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ OpenAPI spec version: 0.0.1
3838
<WarningLevel>4</WarningLevel>
3939
</PropertyGroup>
4040
<ItemGroup>
41-
<Reference Include="AuthenticationSdk, Version=0.0.0.9, Culture=neutral, processorArchitecture=MSIL">
41+
<Reference Include="AuthenticationSdk, Version=0.0.0.10, Culture=neutral, processorArchitecture=MSIL">
4242
<SpecificVersion>False</SpecificVersion>
43-
<HintPath>packages\CyberSource.Authentication.0.0.0.9\lib\AuthenticationSdk.dll</HintPath>
43+
<HintPath>packages\CyberSource.Authentication.0.0.0.10\lib\AuthenticationSdk.dll</HintPath>
4444
</Reference>
4545
<Reference Include="System" />
4646
<Reference Include="System.Core" />

cybersource-rest-client-dotnet.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>CyberSource.Rest.Client</id>
5-
<version>0.0.1.12</version>
5+
<version>0.0.1.13</version>
66
<title>CyberSource.Rest.Client</title>
77
<authors>CyberSource Corporation</authors>
88
<owners>CyberSource</owners>

packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="CyberSource.Authentication" version="0.0.0.9" />
3+
<package id="CyberSource.Authentication" version="0.0.0.10" />
44
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net45" />
55
<package id="RestSharp" version="106.5.4" targetFramework="net452" />
66
</packages>

0 commit comments

Comments
 (0)