From ee4af04826c31b524458b62f3be1e1f8283d054a Mon Sep 17 00:00:00 2001 From: Tony Bark <35226681+tonytins@users.noreply.github.com> Date: Wed, 7 Jan 2026 02:44:21 -0500 Subject: [PATCH] Update target frameworks and improve README - Changed supported frameworks in CSTNet.csproj to net8.0 and net10.0. - Enhanced README with clearer prerequisites, reorganized notes, and added background section for better project context. --- CSTNet/CSTNet.csproj | 2 +- README.md | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CSTNet/CSTNet.csproj b/CSTNet/CSTNet.csproj index bca1405..684e0cc 100644 --- a/CSTNet/CSTNet.csproj +++ b/CSTNet/CSTNet.csproj @@ -1,7 +1,7 @@ - net6.0;net8.0 + net8.0;net10.0 2.2.100-alpha enable latest diff --git a/README.md b/README.md index 30c4a3c..c78c3f0 100644 --- a/README.md +++ b/README.md @@ -29,15 +29,18 @@ Caret-Separated Text (or CST) is a key-value pair format represented by digits o Before you begin, ensure you have the latest versions of the following installed: -- [.NET 8.0](https://dotnet.microsoft.com/en-us/) +- [.NET](https://dotnet.microsoft.com/en-us/) 8.0 or later -## 📓 Project Notes +## 📝 Project Notes -- This all began as a "what if?" What if I could make my own? So, I did. First from a Jupyter notebook and then a full-fledged project that technically has a support cycle. - While this project is technically feature complete, it is not a full drop-in replacement as it lacks variable (`%[digit]`) parsing. - I'm deprecating the `.sln` solution type in favour of `.slnx` going forward. It'll be removed sometime in the future. -## 📄 License +## 🔍 Background + +This all began as a "what if?" What if I could made my own CST parser? It was an attempt to create my first algorithm. One that was a little better than came before. So, I did. First from a Jupyter notebook and then a full-fledged project that now has it's own support cycle. + +## ⚖️ License I license this project under BSD-3-Clause license — see the [LICENSE](LICENSE) file for full text.