Skip to content

Commit afdcc12

Browse files
committed
Version set
1 parent 529cc8f commit afdcc12

File tree

1 file changed

+38
-38
lines changed

1 file changed

+38
-38
lines changed

README.md

+38-38
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ Simplify.Web is a lightweight and fast server-side .NET web-framework based on M
66

77
It can be used as:
88

9-
* An API backend framework
10-
* As a mix of API backend + some SPA front end like Angular
11-
* As an old way backend generated web-site
9+
- An API backend framework
10+
- As a mix of API backend + some SPA front end like Angular
11+
- As an old way backend generated web-site
1212

1313
It can be hosted:
1414

15-
* The same way as an ApsNetCore MVC application (On IIS, or as a console application)
16-
* Inside a windows service
15+
- The same way as an ApsNetCore MVC application (On IIS, or as a console application)
16+
- Inside a windows service
1717

1818
## Package status
1919

20-
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v2.2-blue.svg)](https://www.nuget.org/packages/Simplify.Web/) |
21-
| :------ | :------: |
20+
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v2.3-blue.svg)](https://www.nuget.org/packages/Simplify.Web/) |
21+
| :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------: |
2222
| **Dependencies** | [![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.svg)](https://libraries.io/nuget/Simplify.Web) |
2323

2424
## Issues
@@ -27,24 +27,24 @@ It can be hosted:
2727

2828
## Build status
2929

30-
| Branch | Status |
31-
| :------ | :------ |
32-
| **master** | [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/sln1ciuam2hobsv4/branch/master?svg=true)](https://ci.appveyor.com/project/i4004/simplify-web/branch/master) |
30+
| Branch | Status |
31+
| :---------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
32+
| **master** | [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/sln1ciuam2hobsv4/branch/master?svg=true)](https://ci.appveyor.com/project/i4004/simplify-web/branch/master) |
3333
| **develop** | [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/sln1ciuam2hobsv4/branch/develop?svg=true)](https://ci.appveyor.com/project/i4004/simplify-web/branch/develop) |
3434

3535
## Main features
3636

37-
* Comes as Microsoft.AspNetCore OWIN middleware
38-
* Can be used as an API backend only with front-end frameworks
39-
* Based on MVC and MVVM patterns
40-
* Lightweight & Fast
41-
* Uses switchable IOC container for itself and controllers, views constructor injection ([Simplify.DI](https://github.com/SimplifyNet/Simplify/wiki/Simplify.DI))
42-
* Support async controllers
43-
* Supports controllers which can be run on any request
44-
* Localization-friendly (supports templates, strings and data files localization by default)
45-
* Uses fast templates engine ([Simplify.Templates](https://github.com/SimplifyNet/Simplify/wiki/Simplify.Templates))
46-
* Mocking-friendly
47-
* Mono-friendly
37+
- Comes as Microsoft.AspNetCore OWIN middleware
38+
- Can be used as an API backend only with front-end frameworks
39+
- Based on MVC and MVVM patterns
40+
- Lightweight & Fast
41+
- Uses switchable IOC container for itself and controllers, views constructor injection ([Simplify.DI](https://github.com/SimplifyNet/Simplify/wiki/Simplify.DI))
42+
- Support async controllers
43+
- Supports controllers which can be run on any request
44+
- Localization-friendly (supports templates, strings and data files localization by default)
45+
- Uses fast templates engine ([Simplify.Templates](https://github.com/SimplifyNet/Simplify/wiki/Simplify.Templates))
46+
- Mocking-friendly
47+
- Mono-friendly
4848

4949
## Quick start
5050

@@ -56,11 +56,11 @@ Installing a templates package:
5656
dotnet new -i Simplify.Web.Templates
5757
```
5858

59-
| Template | Short Name |
60-
| :------ | :------ |
61-
| Angular template | sweb.angular |
62-
| Api template | sweb.api |
63-
| Minimal template | sweb.minimal |
59+
| Template | Short Name |
60+
| :---------------------------------- | :---------------------- |
61+
| Angular template | sweb.angular |
62+
| Api template | sweb.api |
63+
| Minimal template | sweb.minimal |
6464
| Windows service hosted api template | sweb.api.windowsservice |
6565

6666
Use the short name to create a project based on selected template:
@@ -193,23 +193,23 @@ public class LoggedUserPanelView : View
193193

194194
There are many ways in which you can participate in the project. Like most open-source software projects, contributing code is just one of many outlets where you can help improve. Some of the things that you could help out with are:
195195

196-
* Documentation (both code and features)
197-
* Bug reports
198-
* Bug fixes
199-
* Feature requests
200-
* Feature implementations
201-
* Test coverage
202-
* Code quality
203-
* Sample applications
196+
- Documentation (both code and features)
197+
- Bug reports
198+
- Bug fixes
199+
- Feature requests
200+
- Feature implementations
201+
- Test coverage
202+
- Code quality
203+
- Sample applications
204204

205205
## Related Projects
206206

207207
Additional extensions to Simplify.Web live in their own repositories on GitHub. For example:
208208

209-
* [Simplify.Web.Json](https://github.com/SimplifyNet/Simplify.Web.Json) - JSON serialization/deserialization
210-
* [Simplify.Web.Multipart](https://github.com/SimplifyNet/Simplify.Web.Multipart) - multipart form model binder
211-
* [Simplify.Web.MessageBox](https://github.com/SimplifyNet/Simplify.Web.MessageBox) - non-interactive server side message box
212-
* [Simplify.Web.Templates](https://github.com/SimplifyNet/Simplify.Web.Templates) - Visual studio project templates
209+
- [Simplify.Web.Json](https://github.com/SimplifyNet/Simplify.Web.Json) - JSON serialization/deserialization
210+
- [Simplify.Web.Multipart](https://github.com/SimplifyNet/Simplify.Web.Multipart) - multipart form model binder
211+
- [Simplify.Web.MessageBox](https://github.com/SimplifyNet/Simplify.Web.MessageBox) - non-interactive server side message box
212+
- [Simplify.Web.Templates](https://github.com/SimplifyNet/Simplify.Web.Templates) - Visual studio project templates
213213

214214
## License
215215

0 commit comments

Comments
 (0)