Skip to content

Commit 003f59c

Browse files
committed
[edit] version/changelog 1.5.1, bump to .NET 10.0 and Simplify.Web 5.3
- Drop .NET 6.0, add .NET 10.0 explicit support - Bump Simplify.Web dependency from 5.0 to 5.3.0 - Update GitHub Actions: checkout@v6, setup-dotnet@v5 with 10.0.x, upload-artifact@v7 - Add PackageLicenseFile and PackageReadmeFile to csproj - Update platform badge in README to .NET 10.0
1 parent 638748e commit 003f59c

5 files changed

Lines changed: 69 additions & 46 deletions

File tree

.github/workflows/build.yml

Lines changed: 43 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,43 @@
1-
name: Build Package
2-
3-
on: push
4-
5-
defaults:
6-
run:
7-
working-directory: src
8-
9-
jobs:
10-
build:
11-
runs-on: ${{ matrix.os }}
12-
strategy:
13-
fail-fast: false
14-
matrix:
15-
os: [ubuntu-latest, windows-latest]
16-
17-
steps:
18-
- name: Code Checkout
19-
uses: actions/checkout@v4.1.1
20-
21-
- name: Install DotNet
22-
uses: actions/setup-dotnet@v4
23-
24-
- name: Restore Dependencies
25-
run: dotnet restore
26-
27-
- name: Build Package
28-
run: dotnet build --no-restore -c Release
29-
30-
- name: Perform Unit Testing
31-
run: dotnet test --no-build -c Release --verbosity normal
32-
33-
- name: Create Package
34-
run: dotnet pack --no-build -c Release -o ./publish
35-
36-
- name: Create packages artifact
37-
if: ${{ matrix.os == 'windows-latest' }}
38-
uses: actions/upload-artifact@v4
39-
with:
40-
name: Packages
41-
path: ./src/publish/
1+
name: Build Package
2+
3+
on: push
4+
5+
defaults:
6+
run:
7+
working-directory: src
8+
9+
jobs:
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
os: [ubuntu-latest, windows-latest]
16+
17+
steps:
18+
- name: Code Checkout
19+
uses: actions/checkout@v6
20+
21+
- name: Install DotNet
22+
uses: actions/setup-dotnet@v5
23+
with:
24+
dotnet-version: "10.0.x"
25+
26+
- name: Restore Dependencies
27+
run: dotnet restore
28+
29+
- name: Build Packages
30+
run: dotnet build --no-restore -c Release
31+
32+
- name: Perform Unit Testing
33+
run: dotnet test --no-build -c Release --verbosity normal
34+
35+
- name: Create Packages
36+
run: dotnet pack --no-build -c Release -o ./publish
37+
38+
- name: Create packages artifact
39+
if: ${{ matrix.os == 'windows-latest' }}
40+
uses: actions/upload-artifact@v7
41+
with:
42+
name: Packages
43+
path: ./src/publish/

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"cSpell.words": [
3-
"cref"
3+
"cref",
4+
"Krylkov",
5+
"netstandard",
6+
"snupkg"
47
]
58
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Build Package](https://github.com/SimplifyNet/Simplify.Web.MessageBox/actions/workflows/build.yml/badge.svg)](https://github.com/SimplifyNet/Simplify.Web.MessageBox/actions/workflows/build.yml)
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%206.0%20%7C%20.NET%20Standard%202.1%20%7C%20.NET%20Standard%202.0-lightgrey)
8+
![Platform](https://img.shields.io/badge/platform-.NET%2010.0%20%7C%20.NET%20Standard%202.1%20%7C%20.NET%20Standard%202.0-lightgrey)
99

1010
`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.
1111

src/Simplify.Web.MessageBox/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.5.1] - 2026-06-26
4+
5+
### Added
6+
7+
- .NET 10.0 explicit support
8+
9+
### Removed
10+
11+
- .NET 6.0 explicit support
12+
13+
### Dependencies
14+
15+
- Simplify.Web bump to 5.3
16+
317
## [1.5.0] - 2024-06-05
418

519
### Dependencies

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0</TargetFrameworks>
3+
<TargetFrameworks>net10.0;netstandard2.1;netstandard2.0</TargetFrameworks>
44
<LangVersion>latest</LangVersion>
55
<Nullable>enable</Nullable>
66
<IncludeSymbols>true</IncludeSymbols>
77
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
99

10-
<Version>1.5</Version>
10+
<Version>1.5.1</Version>
1111

1212
<Authors>Alexander Krylkov</Authors>
1313
<Product>Simplify</Product>
1414
<Description>Simplify.Web static message box templates and controller response</Description>
1515
<Copyright>Licensed under LGPL</Copyright>
16+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
1617
<PackageProjectUrl>https://github.com/SimplifyNet/Simplify.Web.MessageBox</PackageProjectUrl>
1718
<PackageIcon>icon.png</PackageIcon>
1819
<RepositoryUrl>https://github.com/SimplifyNet/Simplify.Web.MessageBox</RepositoryUrl>
1920
<RepositoryType>GIT</RepositoryType>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
2022
<PackageTags>Simplify.Web</PackageTags>
2123

2224
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify.Web.MessageBox/blob/master/Simplify.Web.MessageBox/CHANGELOG.md for details</PackageReleaseNotes>
@@ -30,10 +32,12 @@
3032
<Content Include="Templates\App_Packages\Simplify.Web.MessageBox\OkMessageBox.tpl" />
3133
</ItemGroup>
3234
<ItemGroup>
33-
<PackageReference Include="Simplify.Web" Version="5.0" />
35+
<PackageReference Include="Simplify.Web" Version="5.3.0" />
3436
</ItemGroup>
3537
<ItemGroup>
3638
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />
3739
<None Include="CHANGELOG.md" Pack="true" PackagePath="\" />
40+
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
41+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
3842
</ItemGroup>
3943
</Project>

0 commit comments

Comments
 (0)