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..80ebc085 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 project. 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,