Import tool#4
Merged
Merged
Conversation
Closed
There was a problem hiding this comment.
Pull request overview
Adds a new “OFX to XLSX” mini-tool to the repository, including a reusable parsing/conversion library, a WinForms front-end, and README/docs updates so users can discover and run the new tool alongside the existing ExtractCopilotChat utility.
Changes:
- Added an OFX parsing + XLSX export library (
OFX-To-XLSX) with model types. - Added a WinForms converter app (
OFX-To-XLSX-Converter) for selecting files and running conversions. - Updated README and added sample OFX files / per-tool
.gitignorefor the new tool.
Reviewed changes
Copilot reviewed 17 out of 24 changed files in this pull request and generated 12 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Documents the new OFX→XLSX tool and updates repo structure guidance. |
| OFX-to-XLSX/OFX-To-XLSX/OfxParser.cs | Implements OFX header/XML parsing and SpreadsheetLight XLSX output. |
| OFX-to-XLSX/OFX-To-XLSX/OFX-To-XLSX.csproj | Defines the new library project and package references. |
| OFX-to-XLSX/OFX-To-XLSX/Models/OfxTransaction.cs | Adds a transaction model used by the parser/exporter. |
| OFX-to-XLSX/OFX-To-XLSX/Models/OfxSignOnResponse.cs | Adds sign-on response model extracted from OFX. |
| OFX-to-XLSX/OFX-To-XLSX/Models/OfxHeader.cs | Adds OFX header model extracted from the file header section. |
| OFX-to-XLSX/OFX-To-XLSX/Models/OfxFile.cs | Adds the root OFX data container returned by the parser. |
| OFX-to-XLSX/OFX-To-XLSX/Models/OfxAccount.cs | Adds account metadata model extracted from OFX. |
| OFX-to-XLSX/OFX-To-XLSX.sln | Introduces a solution for the OFX tool projects. |
| OFX-to-XLSX/OFX-To-XLSX-Converter/Program.cs | WinForms app entry point for the converter UI. |
| OFX-to-XLSX/OFX-To-XLSX-Converter/OFX-To-XLSX-Converter.csproj | Defines the WinForms converter project and references the library. |
| OFX-to-XLSX/OFX-To-XLSX-Converter/ConverterForm.resx | WinForms resources for the converter UI. |
| OFX-to-XLSX/OFX-To-XLSX-Converter/ConverterForm.Designer.cs | Generated WinForms UI layout for selecting files and converting. |
| OFX-to-XLSX/OFX-To-XLSX-Converter/ConverterForm.cs | Implements UI event handlers and conversion workflow. |
| OFX-to-XLSX/Documentation/OFX_102_Samples/1.ofx | Sample OFX input for validating parsing behavior. |
| OFX-to-XLSX/Documentation/OFX_102_Samples/2.ofx | Sample OFX input for validating parsing behavior. |
| OFX-to-XLSX/Documentation/OFX_102_Samples/3.ofx | Sample OFX input for validating parsing behavior. |
| OFX-to-XLSX/.gitignore | Adds ignores for the new tool’s build artifacts and VS files. |
Files not reviewed (1)
- OFX-to-XLSX/OFX-To-XLSX-Converter/ConverterForm.Designer.cs: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
No description provided.