Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating Branding #258

Merged
merged 5 commits into from
Oct 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
<div align="center">

![Icon](images/icon.png)
# MongoFramework
An "Entity Framework"-like interface for MongoDB

[![AppVeyor](https://img.shields.io/appveyor/ci/Turnerj/mongoframework/main.svg)](https://ci.appveyor.com/project/Turnerj/mongoframework)
[![Codecov](https://img.shields.io/codecov/c/github/turnersoftware/mongoframework/main.svg)](https://codecov.io/gh/TurnerSoftware/MongoFramework)
[![NuGet](https://img.shields.io/nuget/v/MongoFramework.svg)](https://www.nuget.org/packages/MongoFramework/)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/62fa31c90bf94f3d8e201b9684a7a4ca)](https://www.codacy.com/app/Turnerj/MongoFramework)
</div>

## Overview
MongoFramework tries to bring some of the nice features from Entity Framework into the world of MongoDB.
Expand All @@ -20,7 +24,15 @@ Some of the major features include:

MongoFramework is currently built on-top of the official MongoDB C# driver.

## Extensions
## Licensing and Support

MongoFramework is licensed under the MIT license. It is free to use in personal and commercial projects.

There are [support plans](https://turnersoftware.com.au/support-plans) available that cover all active [Turner Software OSS projects](https://github.com/TurnerSoftware).
Support plans provide private email support, expert usage advice for our projects, priority bug fixes and more.
These support plans help fund our OSS commitments to provide better software for everyone.

## MongoFramework Extensions
These extensions are official packages that enhance the functionality of MongoFramework, integrating it with other systems and tools.

### MongoFramework.Profiling.MiniProfiler
Expand Down
Binary file added images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@

<PackageId>$(AssemblyName)</PackageId>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/TurnerSoftware/MongoFramework</PackageProjectUrl>
<PackageBaseTags>mongo;mongodb</PackageBaseTags>
<PackageBaseTags>mongo;mongodb;data;database;orm</PackageBaseTags>

<RepositoryUrl>https://github.com/TurnerSoftware/MongoFramework.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -29,7 +30,7 @@
</ItemGroup>

<ItemGroup>
<None Include="..\..\License.txt" Pack="true" PackagePath="$(PackageLicenseFile)"/>
<None Include="..\..\images\$(PackageIcon)" Pack="true" PackagePath="/" />
</ItemGroup>

</Project>