From 3d21fe9728af08f80afe5e25aa7cec44852d4ed2 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sat, 21 May 2016 14:02:27 -0400 Subject: [PATCH] initial version done --- LICENSE.txt | 9 +++++++++ Readme.md | 2 ++ Shodan.Net.sln | 1 + src/Shodan.Net/project.json | 18 ++++++++++++------ 4 files changed, 24 insertions(+), 6 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..6fc1145 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,9 @@ + The MIT License (MIT) + +Copyright (c) 2016 Tommy Parnell + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/Readme.md b/Readme.md index 0fe9bf5..2452c1a 100644 --- a/Readme.md +++ b/Readme.md @@ -2,6 +2,8 @@ Visit the official Shodan API documentation at: [https://developer.shodan.io](https://developer.shodan.io) +This is still in active development, error handling might not well handle well. Best bet when working with any libraries you didn't write..harden your calls! + ## Installation `install-package Shodan.Net` diff --git a/Shodan.Net.sln b/Shodan.Net.sln index f9a7154..6c1ba05 100644 --- a/Shodan.Net.sln +++ b/Shodan.Net.sln @@ -9,6 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution ProjectSection(SolutionItems) = preProject .gitignore = .gitignore global.json = global.json + LICENSE.txt = LICENSE.txt Readme.md = Readme.md EndProjectSection EndProject diff --git a/src/Shodan.Net/project.json b/src/Shodan.Net/project.json index 6bc5d27..9c9ad8c 100644 --- a/src/Shodan.Net/project.json +++ b/src/Shodan.Net/project.json @@ -1,16 +1,20 @@ { - "version": "1.0.0-*", + "version": "0.1.0", "authors": [ "Tommy Parnell" ], + "dependencies": { "NETStandard.Library": "1.5.0-rc2-24027", - "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027", - "System.Dynamic.Runtime": "4.0.11-rc2-24027", "Newtonsoft.Json": "8.0.3" }, "frameworks": { "netstandard1.5": { - "imports": "dnxcore50" - } + "imports": "dnxcore50", + "dependencies": { + "System.Dynamic.Runtime": "4.0.11-rc2-24027", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027" + } + }, + "net45": { "frameworkAssemblies": { "System.Runtime.Serialization": "4.0.0.0" } } }, "buildOptions": { "xmlDoc": false @@ -18,9 +22,11 @@ "packOptions": { "owners": [ "Tommy Parnell" ], "summary": "Wrapper over the shodan.io api", + "projectUrl": "https://github.com/tparnell8/Shodan.Net", + "licenseUrl": "https://opensource.org/licenses/MIT", "repository": { "type": "git", - "url": "https://github.com/tparnell8/Shodan.Net" + "url": "https://github.com/tparnell8/Shodan.Net.git" }, "tags": [ "shodan.io" ] }