From 4369523cf61175ca54df52172776498c186f1ef7 Mon Sep 17 00:00:00 2001 From: Michele Bastione Date: Wed, 10 Sep 2025 00:32:58 +0200 Subject: [PATCH 1/2] Minor doc changes --- MiniExcel.slnx | 1 - README-V2.md | 5 +++-- V2-Upgrade-Notes.md | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/MiniExcel.slnx b/MiniExcel.slnx index f111dbe4..b4648e1f 100644 --- a/MiniExcel.slnx +++ b/MiniExcel.slnx @@ -11,7 +11,6 @@ - diff --git a/README-V2.md b/README-V2.md index e64ffdf7..f323eab2 100644 --- a/README-V2.md +++ b/README-V2.md @@ -63,7 +63,7 @@ ---
- If MiniExcel was useful to you please star the project and consider donating. A small gesture can make a big difference in improving the library! + If MiniExcel was useful to you please consider donating, or simply starring the prohect. A small gesture can make a big difference in improving the library!
--- @@ -108,7 +108,8 @@ dotnet add package MiniExcel ``` This package will contain the assemblies with both Excel and Csv functionalities, along with the original `v1.x` methods' signatures. -If you don't care for those you can also install the Excel and Csv packages separately: +~~If you don't care for those you can also install the Excel and Csv packages separately:~~ +We're still pondering whether this is the best way to move forward with the library, and if we do this is how you'll be able to add the separate packages: ```bash dotnet add package MiniExcel.Core diff --git a/V2-Upgrade-Notes.md b/V2-Upgrade-Notes.md index 2fc7349b..4274fd9c 100644 --- a/V2-Upgrade-Notes.md +++ b/V2-Upgrade-Notes.md @@ -6,7 +6,8 @@ `MiniExcel.Importers`, `MiniExcel.Exporters` and `MiniExcel.Templaters` will give you access to, respectively, the `MiniExcelImporterProvider`, `MiniExcelExporterProvider` and `MiniExcelTemplaterProvider`. - This way Excel and Csv query methods are split between the `OpenXmlImporter` and the `CsvImporter`, accessible from the `MiniExcelImporterProvider`. - The same structure was adopted for export methods through `OpenXmlExporter` and `CsvExporter`, while template methods are instead currently only found in `OpenXmlTemplater`. -- Csv methods are only available if the MiniExcel.Csv package is installed, which is pulled down automatically when the full MiniExcel package is downloaded. +- ~~Csv methods are only available if the MiniExcel.Csv package is installed, which is pulled down automatically when the full MiniExcel package is downloaded.~~ +We're still pondering whether this is the best way to move forward with the library, currently only the full MiniExcel package is available. - If the full MiniExcel package is downloaded, the previous namespace will coexist along the new one, containing the original static methods' signatures, which have become a facade for the aferomentioned providers. - `IConfiguration` is now `IMiniExcelConfiguration`, but most methods now require the proper implementation (`OpenXmlConfiguration` or `CsvConfiguration`) to be provided rather than the interface - MiniExcel now fully supports asynchronous streaming the queries, From 4896aa9ee261d857359c02cfa3515c3a0306ea20 Mon Sep 17 00:00:00 2001 From: Michele Bastione Date: Wed, 10 Sep 2025 01:43:30 +0200 Subject: [PATCH 2/2] Fix typo Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Michele Bastione --- README-V2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-V2.md b/README-V2.md index f323eab2..80ebc085 100644 --- a/README-V2.md +++ b/README-V2.md @@ -63,7 +63,7 @@ ---
- If MiniExcel was useful to you please consider donating, or simply starring the prohect. A small gesture can make a big difference in improving the library! + If MiniExcel was useful to you please consider donating, or simply starring the project. A small gesture can make a big difference in improving the library!
---