Skip to content

Commit 4d21e5e

Browse files
committed
Fixes #3
* Upgrade to Simplify.Web 2.0 * .NET 4.5.2 version upgrade to .NET 4.6.2
1 parent 374a80c commit 4d21e5e

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,30 @@
44

55
## Package status
66

7-
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v1.1.2-blue.png)](https://www.nuget.org/packages/Simplify.Web.MessageBox/) |
7+
| Latest version | [![Nuget version](http://img.shields.io/badge/nuget-v1.2-blue.png)](https://www.nuget.org/packages/Simplify.Web.MessageBox/) |
88
| :------ | :------: |
99
| **Dependencies** | [![NuGet Status](http://nugetstatus.com/Simplify.Web.MessageBox.png)](http://nugetstatus.com/packages/Simplify.Web.MessageBox) |
10+
| **Target Frameworks** | 4.6.2, Standard 2.0 |
1011

1112
## Build status
1213

13-
| Branch | **.NET (4.5.2)** |
14+
| Branch | Status |
1415
| :------ | :------ |
1516
| **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) |
1617

17-
# Examples
18+
## Examples
1819

19-
## Setup message box templates
20+
### Setup message box templates
2021

2122
There are different template file for different message box statuses.
2223
Inline templates intended to use as API responses but stylized with HTML.
2324

2425
![Template files](https://raw.githubusercontent.com/i4004/Simplify.Web.MessageBox/master/images/template-files.png)
2526

26-
## Displaying message box
27+
### Displaying message box
28+
29+
#### Default message box which will be added to 'MainContent' variable
2730

28-
### Default message box which will be added to 'MainContent' variable
2931
```csharp
3032
public class MyController : Controller
3133
{
@@ -35,7 +37,8 @@ public class MyController : Controller
3537
}
3638
}
3739
```
38-
### Inline message box
40+
41+
#### Inline message box
3942

4043
Framework execution will be stopped, message box will be returned to client without rest of the website content
4144
```csharp

Simplify.Web.MessageBox/Simplify.Web.MessageBox.csproj

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net452</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
44
<Authors>Alexander Krylkov</Authors>
55
<Product>Simplify</Product>
66
<Description>Simplify.Web static message box templates and controller response</Description>
77
<Copyright>Licensed under LGPL</Copyright>
8-
<Version>1.1.2</Version>
8+
<Version>1.2</Version>
99
<PackageProjectUrl>https://github.com/i4004/Simplify.Web.MessageBox</PackageProjectUrl>
1010
<PackageIconUrl>https://raw.githubusercontent.com/i4004/Simplify.Web/master/Images/Icon.png</PackageIconUrl>
1111
<RepositoryUrl>https://github.com/i4004/Simplify.Web.MessageBox</RepositoryUrl>
1212
<RepositoryType>GIT</RepositoryType>
1313
<PackageTags>Simplify.Web</PackageTags>
1414
<PackageReleaseNotes>
15-
* Package refresh to new format
15+
* Upgrade to Simplify.Web 2.0
16+
* .NET Standard 2.0 support added
17+
* .NET 4.5.2 version upgrade to .NET 4.6.2
1618
</PackageReleaseNotes>
1719
<OutputPath>bin\Any CPU\$(Configuration)\</OutputPath>
1820
<DocumentationFile>bin\Any CPU\$(Configuration)\$(TargetFramework)\Simplify.Web.MessageBox.xml</DocumentationFile>
@@ -27,6 +29,6 @@
2729
<Content Include="Templates\App_Packages\Simplify.Web.MessageBox\OkMessageBox.tpl" />
2830
</ItemGroup>
2931
<ItemGroup>
30-
<PackageReference Include="Simplify.Web" Version="1.2.1" />
32+
<PackageReference Include="Simplify.Web" Version="2.0.0" />
3133
</ItemGroup>
32-
</Project>
34+
</Project>

0 commit comments

Comments
 (0)