-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Strong name, updated deps, and generalization
* GeoIP2 dependency was updated to a version that does not depend on RestSharp. * Some parameters and properties were changed from using concrete classes to interfaces. * The library now has a strong name.
- Loading branch information
Showing
16 changed files
with
102 additions
and
43 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
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,12 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="MaxMind.Db" version="1.1.0" targetFramework="net452" /> | ||
<package id="MaxMind.GeoIP2" version="2.3.1" targetFramework="net452" /> | ||
<package id="MaxMind.Db" version="1.2.0-beta1" targetFramework="net452" /> | ||
<package id="MaxMind.GeoIP2" version="2.4.0-beta1" targetFramework="net452" /> | ||
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net452" /> | ||
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net452" /> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net452" /> | ||
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net452" /> | ||
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net452" /> | ||
<package id="NUnit" version="2.6.4" targetFramework="net452" /> | ||
<package id="RestSharp" version="105.1.0" targetFramework="net452" /> | ||
<package id="RichardSzalay.MockHttp" version="1.2.1" targetFramework="net452" /> | ||
</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
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RuleSet Name="Rules for MaxMind.MinFraud" Description="Code analysis rules for MaxMind.MinFraud.csproj." ToolsVersion="14.0"> | ||
<IncludeAll Action="Warning" /> | ||
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed"> | ||
<Rule Id="CA1020" Action="None" /> | ||
<Rule Id="CA1026" Action="None" /> | ||
<Rule Id="CA1304" Action="None" /> | ||
<Rule Id="CA1305" Action="None" /> | ||
</Rules> | ||
</RuleSet> |
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
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
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,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="MaxMind.Db" version="1.1.0" targetFramework="net452" /> | ||
<package id="MaxMind.GeoIP2" version="2.3.1" targetFramework="net452" /> | ||
<package id="MaxMind.Db" version="1.2.0-beta1" targetFramework="net452" /> | ||
<package id="MaxMind.GeoIP2" version="2.4.0-beta1" targetFramework="net452" /> | ||
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net452" /> | ||
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net452" /> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net452" /> | ||
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net452" /> | ||
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net452" /> | ||
<package id="RestSharp" version="105.1.0" targetFramework="net452" /> | ||
</packages> |
Binary file not shown.
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