-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* - Added TLS 1.2 support - Fixed TargetFrameworks from net45 to net46 * Updated SecurityProtocol value * Changed to SecurityProtocolType 0xC00 to Tls12
- Loading branch information
Showing
9 changed files
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -182,3 +182,4 @@ $RECYCLE.BIN/ | |
|
||
# Visual Studio 2014 CTP | ||
**/*.sln.ide | ||
/.vs/byndercsharpsdk/v15/Server/sqlite3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Newtonsoft.Json" version="8.0.1" targetFramework="net45" /> | ||
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net46" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Newtonsoft.Json" version="8.0.1" targetFramework="net45" /> | ||
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net46" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<appSettings> | ||
<add key="TOKEN" value="LOGIN_TOKEN"/> | ||
<add key="TOKEN_SECRET" value="LOGIN_TOKEN_SECRET"/> | ||
<add key="CONSUMER_KEY" value="CONSUMER_KEY"/> | ||
<add key="CONSUMER_SECRET" value="CONSUMER_SECRET"/> | ||
<add key="API_BASE_URL" value="http://localhost:8890/"/> | ||
<add key="TOKEN" value="LOGIN_TOKEN" /> | ||
<add key="TOKEN_SECRET" value="LOGIN_TOKEN_SECRET" /> | ||
<add key="CONSUMER_KEY" value="CONSUMER_KEY" /> | ||
<add key="CONSUMER_SECRET" value="CONSUMER_SECRET" /> | ||
<add key="API_BASE_URL" value="http://localhost:8890/" /> | ||
</appSettings> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/></startup></configuration> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" /></startup> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Castle.Core" version="3.3.3" targetFramework="net452" /> | ||
<package id="Moq" version="4.5.28" targetFramework="net452" /> | ||
<package id="Moq.Sequences" version="1.0.1.0" targetFramework="net452" /> | ||
<package id="NUnit" version="3.5.0" targetFramework="net452" /> | ||
<package id="Castle.Core" version="3.3.3" targetFramework="net46" /> | ||
<package id="Moq" version="4.5.28" targetFramework="net46" /> | ||
<package id="Moq.Sequences" version="1.0.1.0" targetFramework="net46" /> | ||
<package id="NUnit" version="3.5.0" targetFramework="net46" /> | ||
</packages> |