Skip to content

Commit d527459

Browse files
committed
Readme update
1 parent 3c9de49 commit d527459

File tree

1 file changed

+17
-22
lines changed

1 file changed

+17
-22
lines changed

README.md

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
# Simplify.Web.MessageBox
22

3-
`Simplify.Web.MessageBox` is a package which provides non-interactive server side message box for [Simplify.Web](https://github.com/SimplifyNet/Simplify.Web) web-framework.
4-
5-
## Package status
6-
7-
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v1.2-blue.png)](https://www.nuget.org/packages/Simplify.Web.MessageBox/) |
8-
| :------ | :------: |
9-
| **Dependencies** | [![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.MessageBox.svg)](https://libraries.io/nuget/Simplify.Web.MessageBox) |
10-
| **Target Frameworks** | 4.6.2, Standard 2.0 |
3+
[![Nuget Version](https://img.shields.io/nuget/v/Simplify.Web.MessageBox)](https://www.nuget.org/packages/Simplify.Web.MessageBox/)
4+
[![Nuget Download](https://img.shields.io/nuget/dt/Simplify.Web.MessageBox)](https://www.nuget.org/packages/Simplify.Web.MessageBox/)
5+
[![AppVeyor branch](https://img.shields.io/appveyor/ci/i4004/simplify-web-messagebox/master)](https://ci.appveyor.com/project/i4004/simplify-web-messagebox)
6+
[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.MessageBox)](https://libraries.io/nuget/Simplify.Web.MessageBox)
7+
[![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/SimplifyNet/Simplify.Web.MessageBox)](https://www.codefactor.io/repository/github/simplifynet/simplify.web.MessageBox)
8+
![Platform](https://img.shields.io/badge/platform-.NET%20Standard%202.0%20%7C%20.NET%204.6.2-lightgrey)
119

12-
## Build status
13-
14-
| Branch | Status |
15-
| :------ | :------ |
16-
| **master** | [![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/2h8jh563pwsf283i/branch/master?svg=true)](https://ci.appveyor.com/project/i4004/simplify-web-messagebox/branch/master) |
10+
`Simplify.Web.MessageBox` is a package which provides non-interactive server side message box for [Simplify.Web](https://github.com/SimplifyNet/Simplify.Web) web-framework.
1711

1812
## Examples
1913

@@ -31,22 +25,23 @@ Inline templates intended to use as API responses but stylized with HTML.
3125
```csharp
3226
public class MyController : Controller
3327
{
34-
public override ControllerResponse Invoke()
35-
{
36-
return new MessageBox("your string");
37-
}
28+
public override ControllerResponse Invoke()
29+
{
30+
return new MessageBox("your string");
31+
}
3832
}
3933
```
4034

4135
#### Inline message box
4236

43-
Framework execution will be stopped, message box will be returned to client without rest of the website content
37+
Framework execution will be stopped, message box will be returned to client without rest of the website content.
38+
4439
```csharp
4540
public class MyController : Controller
4641
{
47-
public override ControllerResponse Invoke()
48-
{
49-
return new MessageBoxInline("your string");
50-
}
42+
public override ControllerResponse Invoke()
43+
{
44+
return new MessageBoxInline("your string");
45+
}
5146
}
5247
```

0 commit comments

Comments
 (0)