jcoliz.OfxSharp.NetStandard 3.1.0-rc2

.NET Standard 2.0
This is a prerelease version of jcoliz.OfxSharp.NetStandard.
There is a newer version of this package available.
See the version list below for details.
dotnet add package jcoliz.OfxSharp.NetStandard --version 3.1.0-rc2
NuGet\Install-Package jcoliz.OfxSharp.NetStandard -Version 3.1.0-rc2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="jcoliz.OfxSharp.NetStandard" Version="3.1.0-rc2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add jcoliz.OfxSharp.NetStandard --version 3.1.0-rc2
#r "nuget: jcoliz.OfxSharp.NetStandard, 3.1.0-rc2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install jcoliz.OfxSharp.NetStandard as a Cake Addin
#addin nuget:?package=jcoliz.OfxSharp.NetStandard&version=3.1.0-rc2&prerelease

// Install jcoliz.OfxSharp.NetStandard as a Cake Tool
#tool nuget:?package=jcoliz.OfxSharp.NetStandard&version=3.1.0-rc2&prerelease

OFXSharp

Contributor Covenant Build+Test codecov Release Nuget

This library is a port from the original OFXParser to .NET Standard.

OFXParser is a library to parse OFX Files into plain C# objects, with some small changed done to handle OFX Files used by Brazilian banks, that don't strict follow the OFX pattern.

If you have any request, please feel free to open an issue or start a discussion.

How to use

OfxDocument ofx = OfxDocumentReader.FromSgmlFile( filePath: @"c:\ofxdoc.ofx" );
OfxStatementResponse statement = ofx.Statements.First();

This will give you an object of type OfxStatementResponse, with the following properties:

public class OfxStatementResponse
{
    public OfxStatus ResponseStatus { get; }

    public String DefaultCurrency { get; }

    public Account AccountFrom { get; }

    public DateTimeOffset TransactionsStart { get; }

    public DateTimeOffset TransactionsEnd   { get; }

    public List<Transaction> Transactions { get; }

    public Balance LedgerBalance { get; }

    public Balance AvailableBalance { get; }
}

Code of conduct

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.

Please review the Code of conduct for more details.

Maintainer History

This code has quite a history of forks and multiple mainainters releasing it over time!

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.0 63 3/14/2023
3.1.0-rc2 71 8/27/2022
3.1.0-rc1 116 7/28/2022
3.0.1 3,559 12/6/2021
3.0.1-rc5 214 11/22/2021
3.0.1-rc4 590 11/21/2021
3.0.1-rc3 588 11/21/2021

- Adds ability to read OFX2.0 (XML) files not just OFX1.0 (SGML) files. (Issue #6)
- Adds strong name assembly signing. (Issue #5)

Thanks to @TechnicalJohn for both of these.