diff --git a/InputDialog/InputDialog.cs b/InputDialog/InputDialog.cs index e5cc498..0b4154b 100644 --- a/InputDialog/InputDialog.cs +++ b/InputDialog/InputDialog.cs @@ -1,6 +1,7 @@ //Acknowledging origin of this code //https://www.codeproject.com/tips/822756/input-box-in-csharp-for-windowsforms //It has been modified significantly, converted to .net 6 and turned into a nuget package. +//As of 20250821 - Updated to .net 9 and C# 13 using InputDialog.Utilities; diff --git a/InputDialog/InputDialog.csproj b/InputDialog/InputDialog.csproj index b3168a8..c3d39a0 100644 --- a/InputDialog/InputDialog.csproj +++ b/InputDialog/InputDialog.csproj @@ -1,12 +1,12 @@ - + - net6.0-windows + net9.0-windows true enable enable True - 1.3.0 + 1.4.0 A simple dialog box to capture user input. Supports a single string input or selection of a value from a dropdown box. Also functions a a standard MessageBox. @@ -15,7 +15,8 @@ Also functions a a standard MessageBox. 20220308 - Enable no icon and adjusted sizes of other elements accordingly 20231214 - Fixed combobox Enter key = click Ok button (if exists) 20231215 - Code Cleanup only (no true updates) -20240103 - Added numeric selector. moved Enums to separate classes (eliminate InputDialog.InputDialog.enum) +20240103 - Added numeric selector. moved Enums to separate classes (eliminate InputDialog.InputDialog.enum) +20250821 - Updated to .Net 9 and C# 13 House on the Rock Software https://github.com/rkreisel/InputDialog ReadMe.md diff --git a/InputDialogTester/InputDialogTester.csproj b/InputDialogTester/InputDialogTester.csproj index f8e6414..fbcaf8b 100644 --- a/InputDialogTester/InputDialogTester.csproj +++ b/InputDialogTester/InputDialogTester.csproj @@ -2,7 +2,8 @@ WinExe - net6.0-windows + net9.0-windows + 1.4.0 enable true enable @@ -32,7 +33,7 @@ - + diff --git a/InputDialogUsageSample/InputDialogUsageSample.csproj b/InputDialogUsageSample/InputDialogUsageSample.csproj index 0bb51ef..0d4cacf 100644 --- a/InputDialogUsageSample/InputDialogUsageSample.csproj +++ b/InputDialogUsageSample/InputDialogUsageSample.csproj @@ -2,7 +2,8 @@ WinExe - net6.0-windows + net9.0-windows + 1.4.0 enable true enable diff --git a/ReadMe.md b/ReadMe.md index dcecc38..bbae181 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -2,6 +2,8 @@ Input Dialog is a simple .net 6-windows, Winforms Input dialog in a nuget package. +**20250821:** Updated to .net 9 and C# 13 + ### Nuget Link https://www.nuget.org/packages/InputDialog/