Skip to content

Commit f18d41f

Browse files
committed
- .NET 5.0 explicit support
- Simplify.Web bump to 4.4 Changelog added
1 parent 068c834 commit f18d41f

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![AppVeyor branch](https://img.shields.io/appveyor/ci/i4004/simplify-web-messagebox/master)](https://ci.appveyor.com/project/i4004/simplify-web-messagebox)
66
[![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/nuget/Simplify.Web.MessageBox)](https://libraries.io/nuget/Simplify.Web.MessageBox)
77
[![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)
8+
![Platform](https://img.shields.io/badge/platform-NET%205.0%20%7C%20.NET%20Standard%202.0%20%7C%20.NET%204.6.2-lightgrey)
99
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=SimplifyNet/Simplify.Web.MessageBox)](https://dependabot.com)
1010
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen)](http://makeapullrequest.com)
1111

Simplify.Web.MessageBox/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## [1.4.3] - 2021-04-26
4+
5+
### Added
6+
7+
- .NET 5.0 explicit support
8+
9+
### Dependencies
10+
11+
- Simplify.Web bump to 4.4

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
3+
<TargetFrameworks>net5.0;netstandard2.0;net462</TargetFrameworks>
44
<IncludeSymbols>true</IncludeSymbols>
55
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
66
<OutputPath>bin\Any CPU\$(Configuration)\</OutputPath>
77
<DocumentationFile>bin\Any CPU\$(Configuration)\$(TargetFramework)\Simplify.Web.MessageBox.xml</DocumentationFile>
88

9-
<Version>1.4.2</Version>
10-
<PackageReleaseNotes>
11-
Updates
12-
* Upgrade to Simplify.Web 4.2.3
13-
</PackageReleaseNotes>
9+
<Version>1.4.3</Version>
1410

1511
<Authors>Alexander Krylkov</Authors>
1612
<Product>Simplify</Product>
@@ -21,6 +17,8 @@
2117
<RepositoryUrl>https://github.com/SimplifyNet/Simplify.Web.MessageBox</RepositoryUrl>
2218
<RepositoryType>GIT</RepositoryType>
2319
<PackageTags>Simplify.Web</PackageTags>
20+
21+
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify.Web.Multipart/tree/master/src/Simplify.Web.Multipart/CHANGELOG.md for details</PackageReleaseNotes>
2422
</PropertyGroup>
2523
<ItemGroup>
2624
<Content Include="Templates\App_Packages\Simplify.Web.MessageBox\ErrorMessageBox.tpl" />
@@ -33,4 +31,8 @@
3331
<ItemGroup>
3432
<PackageReference Include="Simplify.Web" Version="4.4.*" />
3533
</ItemGroup>
34+
<ItemGroup>
35+
<None Include="..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
36+
<None Include="CHANGELOG.md" Pack="true" PackagePath="\" />
37+
</ItemGroup>
3638
</Project>

0 commit comments

Comments
 (0)