Skip to content

Commit 3ce3c5c

Browse files
committed
update readme
1 parent f1b8d53 commit 3ce3c5c

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Cloud-native .NET Core Kit
22

3+
[![Build status](https://img.shields.io/appveyor/ci/thangchung/netcore-kit.svg)](https://ci.appveyor.com/api/project/thangchung/netcore-kit)
34
[![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/cloudnative-netcore/netcorekit/blob/master/LICENSE)
45
[![version](https://img.shields.io/nuget/v/NetCoreKit.Domain.svg?label=version)](https://www.nuget.org/packages?q=NetCoreKit)
5-
[![Build status](https://img.shields.io/appveyor/ci/thangchung/netcore-kit.svg)](https://ci.appveyor.com/api/project/thangchung/netcore-kit)
66

77
A set of cloud-native tools and utilities for .NET Core.
88

9+
The goal of this project is implement the most common used cloud-native technologies (cloud-agnostic approach, containerization mechanism, container orchestration and so on) and share with the technical community the best way to develop great applications with .NET Core.
10+
11+
## Give a Star! :star:
12+
13+
If you liked the project or if `netcorekit` helped you, please give a star so that .NET community will know and help them just like you. Thank you very much :+1:
14+
915
### Features
1016

1117
- Simple libraries. No frameworks. Little abstraction.
@@ -26,7 +32,9 @@ A set of cloud-native tools and utilities for .NET Core.
2632

2733
Small, lightweight, cloud-native out of the box, and much more simple to get starting with miniservices approach. [Why miniservices?](https://thenewstack.io/miniservices-a-realistic-alternative-to-microservices)
2834

29-
- No data storage
35+
### Look how simple we can start as below:
36+
37+
- Without storage, merely calculation and job tasks:
3038

3139
```csharp
3240
public class Startup
@@ -43,7 +51,7 @@ public class Startup
4351
}
4452
```
4553

46-
- With Entity Framework
54+
- With Entity Framework Core (SQL Server, MySQL, and SQLite providers) comes along with the generic repository in place:
4755

4856
```csharp
4957
public class Startup
@@ -60,7 +68,7 @@ public class Startup
6068
}
6169
```
6270

63-
- With MongoDb
71+
- With NoSQL (MongoDb provider) comes along with the generic repository in place:
6472

6573
```csharp
6674
public class Startup

0 commit comments

Comments
 (0)