Skip to content

Commit 553ac55

Browse files
committed
feat: Add support for .NET 10 and update package references
1 parent df66c59 commit 553ac55

20 files changed

Lines changed: 13 additions & 9 deletions

Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<!-- Multi-targeting for .NET 8 and .NET 9 -->
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
3+
<!-- Multi-targeting for .NET 8, .NET 9, and .NET 10 -->
4+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
@@ -24,8 +24,8 @@
2424
<PackageTags>blazor;autocomplete;component;ai;semantic-search;performance;trimming;aot;wcag;accessibility;theming;virtualization</PackageTags>
2525
<PackageReadmeFile>README.md</PackageReadmeFile>
2626
<PackageIcon>icon.png</PackageIcon>
27-
<Version>1.0.2</Version>
28-
<PackageReleaseNotes>Version 1.0.2 - Streamlined documentation, security enhancements, and improved test coverage.</PackageReleaseNotes>
27+
<Version>1.0.3</Version>
28+
<PackageReleaseNotes>Version 1.0.3 - Added .NET 10 support. Now targets .NET 8, .NET 9, and .NET 10.</PackageReleaseNotes>
2929
<Copyright>Copyright (c) 2025 EasyAppDev</Copyright>
3030

3131
<!-- Documentation -->

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A high-performance AutoComplete component for Blazor with AI-powered semantic se
1515
- **Accessible** - WCAG 2.1 AA, ARIA 1.2 Combobox pattern, keyboard navigation
1616
- **Theming** - 4 design presets (Material, Fluent, Modern, Bootstrap), CSS variables
1717
- **8 Display Modes** - Built-in layouts eliminate template boilerplate
18-
- **.NET 8/9** - WebAssembly, Server, Auto render modes
18+
- **.NET 8/9/10** - WebAssembly, Server, Auto render modes
1919

2020
## Installation
2121

@@ -445,7 +445,7 @@ Configuration in `appsettings.json`:
445445

446446
## Requirements
447447

448-
- .NET 8.0 or .NET 9.0
448+
- .NET 8.0, .NET 9.0, or .NET 10.0
449449
- Blazor WebAssembly, Server, or Auto
450450

451451
## License

global.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
4-
"rollForward": "latestMinor"
3+
"version": "10.0.100",
4+
"rollForward": "latestMinor",
5+
"allowPrerelease": true
56
}
67
}
-135 KB
Binary file not shown.
-56.5 KB
Binary file not shown.
-162 KB
Binary file not shown.
-62.9 KB
Binary file not shown.
162 KB
Binary file not shown.
63 KB
Binary file not shown.
-86.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)