Conversation
- Rename NuGet package Deedle.Excel.Reader to Deedle.ExcelReader, matching the existing namespace (closes #713) - Add new Deedle.ExcelWriter package using MiniExcel for cross-platform .xlsx writing: Frame.writeExcel, Frame.writeExcelSheet, Frame.writeExcelSheets, stream overloads, and C# ExcelFrameWriter static API (closes #714) - Add Deedle.ExcelWriter.Tests with 10 tests covering all write functions - Update Deedle.ExcelReader.Tests and Deedle.CSharp.Tests for renamed paths - Update docs/excel.fsx with combined ExcelReader + ExcelWriter documentation - Update docs/csharp.md and docs/index.fsx for renamed package - Add MiniExcel to paket.dependencies and paket.lock - Update RELEASE_NOTES.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 This is an automated PR from Repo Assist.
Closes #714 — Add
Deedle.ExcelWriterpackageCloses #713 — Rename
Deedle.Excel.Reader→Deedle.ExcelReaderWhat's changed
New:
Deedle.ExcelWriter(closes #714)A new cross-platform Excel writing package backed by MiniExcel — one of the fastest and most memory-efficient .xlsx writers available on NuGet.
F# API:
C# API:
Missing values are written as
null(empty cells). Any existing file is overwritten.Fix: Rename
Deedle.Excel.Reader→Deedle.ExcelReader(closes #713)The NuGet package name
Deedle.Excel.Readerwas inconsistent with its namespaceDeedle.ExcelReader. This PR renames the package, project, and test project toDeedle.ExcelReader. The namespace, API, and all F#/C# types are unchanged.Files changed
src/Deedle.ExcelReader/src/Deedle.Excel.Reader/src/Deedle.ExcelWriter/ExcelWriter.fs+ project filetests/Deedle.ExcelReader.Tests/tests/Deedle.Excel.Reader.Tests/tests/Deedle.ExcelWriter.Tests/tests/Deedle.CSharp.Tests/docs/excel.fsxdocs/csharp.md,docs/index.fsxpaket.dependenciesMiniExcelRELEASE_NOTES.mdTest Status
All tests pass (
dotnet test Deedle.sln -c Release):Deedle.ExcelReader.Tests: 20 passedDeedle.ExcelWriter.Tests: 10 passedDeedle.CSharp.Tests(Excel section): 8 passed