Skip to content

Commit c0f9636

Browse files
committed
Update to version 1.7.3 with .NET 8.0 support
- Added .NET 8.0 for Windows to target frameworks. - Bumped version number from 1.7.2 to 1.7.3. - Updated release notes to reflect the `IsReadOnly` fix. - Revised installation command in README for version 1.7.3. - Updated "What's new" section to highlight the `IsReadOnly` fix.
1 parent 7c04ef6 commit c0f9636

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

AutoCompleteTextBox/AutoCompleteTextBox/AutoCompleteTextBox.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
33
<PropertyGroup>
44
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
5-
<TargetFrameworks>net452;net472;net48;netcoreapp3.1;net6.0-windows</TargetFrameworks>
5+
<TargetFrameworks>net452;net472;net48;netcoreapp3.1;net6.0-windows;net8.0-windows</TargetFrameworks>
66
<UseWPF>true</UseWPF>
7-
<Version>1.7.2</Version>
7+
<Version>1.7.3</Version>
88
<PackageProjectUrl>https://github.com/quicoli/WPF-AutoComplete-TextBox</PackageProjectUrl>
99
<RepositoryType />
1010
<RepositoryUrl>https://github.com/quicoli/WPF-AutoComplete-TextBox</RepositoryUrl>
@@ -13,7 +13,8 @@
1313
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1414
<ApplicationIcon>AutoCompleteTextBox.ico</ApplicationIcon>
1515
<PackageReleaseNotes>
16-
AutoCompleteComboBox.Watermark visible fix.
16+
AutoCompleteComboBox.IsReadOnly fix.
17+
Updated version to 1.7.3.
1718
</PackageReleaseNotes>
1819
<Description>An auto complete textbox and combo box for WPF</Description>
1920
<PackageIcon>AutoCompleteTextBox.png</PackageIcon>

README.md

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

55

66
Install:
7-
```PM> Install-Package AutoCompleteTextBox -Version 1.7.2```
7+
```PM> Install-Package AutoCompleteTextBox -Version 1.7.3```
88

99

1010
>WPF AutoComplete TextBox is an original work from [Bhardwaj Deepak](http://www.codeproject.com/Tips/801004/WPF-AutoComplete-TextBox)
@@ -30,9 +30,9 @@ This control originally features:
3030
7. Much more from collaborators!
3131

3232

33-
### What's new in version 1.7.2?
33+
### What's new in version 1.7.3?
3434

35-
1. Watermark adjustments for AutoCompleteComboBox. (thanks @hsytkm)
35+
1. IsReadOnly property fix. (thanks @chefarbeiter)
3636

3737

3838
### See our Wiki

0 commit comments

Comments
 (0)