From c3a7150bb42bce4fb9c82fa4beb463477e0cd715 Mon Sep 17 00:00:00 2001 From: David Lebee Date: Tue, 12 Feb 2019 22:14:03 -0500 Subject: [PATCH] added readme and license --- LICENSE.md | 9 +++++++++ ObjectStorage.sln | 6 ++++++ README.md | 12 ++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 LICENSE.md create mode 100644 README.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..e5b834e --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2018 Powered Softwares Inc. + +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/ObjectStorage.sln b/ObjectStorage.sln index 3449b3f..7d8e6f6 100644 --- a/ObjectStorage.sln +++ b/ObjectStorage.sln @@ -7,6 +7,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoweredSoft.ObjectStorage.M EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PoweredSoft.ObjectStorage.MongoDB.Tests", "PoweredSoft.ObjectStorage.MongoDB.Tests\PoweredSoft.ObjectStorage.MongoDB.Tests.csproj", "{D8CB2E20-7298-4EEB-9694-C54654B1BD1C}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{EEF6DA7F-E669-4A23-8EF4-4DD22784DAE3}" + ProjectSection(SolutionItems) = preProject + README.md = README.md + LICENSE.md = LICENSE.md + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x86 = Debug|x86 diff --git a/README.md b/README.md new file mode 100644 index 0000000..3524afe --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Powered Softwares Object Storage Abstraction and implementations + +Goal of this project is to abstract the implementation of Object/Document +storage type databases, this way it is easily migratable to any object storage +choices. + +# Getting started + +Full Version | NuGet | NuGet Install +------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------: +PoweredSoft.ObjectStorage.Core | [![NuGet](https://img.shields.io/nuget/v/PoweredSoft.ObjectStorage.Core.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.ObjectStorage.Core/) | ```PM> Install-Package PoweredSoft.ObjectStorage.Core``` +PoweredSoft.ObjectStorage.MongoDB | [![NuGet](https://img.shields.io/nuget/v/PoweredSoft.ObjectStorage.MongoDB.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/PoweredSoft.ObjectStorage.MongoDB/) | ```PM> Install-Package PoweredSoft.ObjectStorage.MongoDB``` \ No newline at end of file