diff options
Diffstat (limited to 'ThirdParty/CsvHelper-master/README.markdown')
-rw-r--r-- | ThirdParty/CsvHelper-master/README.markdown | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/ThirdParty/CsvHelper-master/README.markdown b/ThirdParty/CsvHelper-master/README.markdown new file mode 100644 index 0000000..2b7cbf0 --- /dev/null +++ b/ThirdParty/CsvHelper-master/README.markdown @@ -0,0 +1,77 @@ +# CsvHelper + +[](https://gitter.im/CsvHelper/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[](#backers) +[](#sponsors) +<a href="https://www.nuget.org/packages/CsvHelper"><img src="https://img.shields.io/nuget/v/CsvHelper.svg" alt="NuGet Version" /></a> +<a href="https://www.nuget.org/packages/CsvHelper"><img src="https://img.shields.io/nuget/dt/CsvHelper.svg" alt="NuGet Download Count" /></a> + +A library for reading and writing CSV files. Extremely fast, flexible, and easy to use. Supports reading and writing of custom class objects. + +## Install + +### Package Manager Console + +``` +PM> Install-Package CsvHelper +``` + +### .NET CLI Console + +``` +> dotnet add package CsvHelper +``` + +## Documentation + +http://joshclose.github.io/CsvHelper/ + +### Building the Documentation + +1. Install [node.js](https://nodejs.org/en/download/). +1. Go into the `CsvHelper/docs-src` folder. +1. Run `npm start` to start a local test site. Make any changes needed. +1. Run `npm run build` to build the documentation files that are output to `CsvHelper/docs`. + +## License + +Dual licensed + +Microsoft Public License (MS-PL) + +http://www.opensource.org/licenses/MS-PL + +Apache License, Version 2.0 + +http://opensource.org/licenses/Apache-2.0 + +## Contributing + +Want to contribute? Great! Here are a few guidelines. + +1. If you want to do a feature, post an issue about the feature first. Some features are intentionally left out, some features may already be in the works, or I may have some advice on how I think it should be done. I would feel bad if time was spent on some code that won't be used. +2. If you want to do a bug fix, it might not be a bad idea to post about it too. I've had the same bug fixed by multiple people at the same time before. +3. All code should have a unit test. If you make a feature, there should be significant tests around the feature. If you do a bug fix, there should be a test specific to that bug so it doesn't happen again. +4. Pull requests should have a single commit. If you have multiple commits, squash them into a single commit before requesting a pull. +5. Try and follow the code styling already in place. If you have ReSharper there is a dotsettings file included and things should automatically be formatted for you. + +## Credits + +### Contributors + +This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. + +<a href="https://github.com/JoshClose/CsvHelper/graphs/contributors"><img src="https://opencollective.com/csvhelper/contributors.svg?width=890&button=false" /></a> + +### Backers + +Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/csvhelper#backer)] + +<a href="https://opencollective.com/csvhelper#backers" target="_blank"><img src="https://opencollective.com/csvhelper/backers.svg?width=890"></a> + +### Sponsors + +Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/csvhelper#sponsor)] + +<a href="https://opencollective.com/csvhelper/sponsor/0/website" target="_blank"><img src="https://opencollective.com/csvhelper/sponsor/0/avatar.svg"></a> + |