Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/EdiWeave/EdiWeave
Open Source Hard-Fork of EdiFabric
https://github.com/EdiWeave/EdiWeave
Last synced: 3 months ago
JSON representation
Open Source Hard-Fork of EdiFabric
- Host: GitHub
- URL: https://github.com/EdiWeave/EdiWeave
- Owner: EdiWeave
- License: lgpl-3.0
- Created: 2017-08-25T20:09:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-20T09:42:08.000Z (over 1 year ago)
- Last Synced: 2024-05-21T23:05:56.344Z (6 months ago)
- Language: C#
- Homepage: https://ediweave.net
- Size: 3.36 MB
- Stars: 58
- Watchers: 13
- Forks: 31
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Electronic-Interchange-Github-Resources - Silvenga/EdiWeave - Open Source Hard-Fork of EdiFabric (Libraries / C#/DotNet)
README
[![Project Icon](./Assets/logo.png)](https://ediweave.net/)
[![Nuget Package](https://img.shields.io/nuget/v/EdiWeave.Framework.svg?maxAge=86400&style=flat-square)](https://www.nuget.org/packages/EdiWeave.Framework/)
[![Build status](https://img.shields.io/appveyor/ci/Silvenga/ediweave.svg?maxAge=86400&style=flat-square)](https://ci.appveyor.com/project/Silvenga/ediweave)> An **open source** framework that empowers developers and businesses interested in enabling their software systems with EDI capabilities and can be integrated into your business applications.
> \- Originally from EdiFrabricEdiWeave is a hard-fork of the now closed-source library EdiFabric. It mirror'ed the last state of the EdiFabric repository before the company EdiFabric took it down.
Supported frameworks:
- .NET Framework 4.5
- .NET Standard 1.6
- .NET Standard 2.0
- .NET Core 1.1## Download it!
### 8.0 Branch (Current)
```
Install-Package EdiWeave.Framework
```### 7.3 Branch (Legacy)
```
Install-Package EdiWeave.Framework -Version 7.3.3
```## Migrating from EdiFabric
In most cases, upgrading from EdiFabric to EdiWeave is easy! This project attempts to maintain API compatibility with EdiFabric when possible (at least for the known future). Existing class based definitions (and XML based ones, if using the Legacy branch) should be fully compatible.
First uninstall EdiFabric:
```
Uninstall-Package EdiFabric.Framework
```Then install EdiWeave:
```
Install-Package EdiWeave.Framework
```Then simply find and replace the strings `EdiFabric` with `EdiWeave`.
**Note**: If you are using the latest version of the existing class-based definitions, please find and remove the `Id` property as well as the attributes adorning it. Failure to do so will cause parsing errors.