https://github.com/another-guy/magma
Provides helpers for AspNetCore WebApi services
https://github.com/another-guy/magma
Last synced: 11 months ago
JSON representation
Provides helpers for AspNetCore WebApi services
- Host: GitHub
- URL: https://github.com/another-guy/magma
- Owner: another-guy
- License: mit
- Created: 2016-07-09T08:19:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-16T22:03:28.000Z (about 9 years ago)
- Last Synced: 2025-07-13T18:12:14.595Z (12 months ago)
- Language: C#
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Security: Security/Claims/IdentityExtensions.cs
Awesome Lists containing this project
README
## Synopsis
[](https://github.com/another-guy/Magma)
Provides helpers for AspNetCore WebApi services
## Code Example
```cs
TODO
```
## Motivation
Syntax sugar is syntax sugar: it's not a necessary thing per se but it can improve code quality.
## Installation
Magma is a available in a form of a NuGet package.
Follow regular installation process to bring it to your project.
https://www.nuget.org/packages/Magma/
## API Reference
// TODO
## Tests
There are no automated tests for the project at the moment.
## License
The code is distributed under the MIT license.
## Reporting an Issue
Reporting an issue, proposing a feature, or asking a question are all great ways to improve software quality.
Here are a few important things that package contributors will expect to see in a new born GitHub issue:
* the relevant version of the package;
* the steps to reproduce;
* the expected result;
* the observed result;
* some code samples illustrating current inconveniences and/or proposed improvements.
## Contributing
Contribution is the best way to improve any project!
1. Fork it!
2. Create your feature branch (```git checkout -b my-new-feature```).
3. Commit your changes (```git commit -am 'Added some feature'```)
4. Push to the branch (```git push origin my-new-feature```)
5. Create new Pull Request
...or follow steps described in a nice [fork guide](http://kbroman.org/github_tutorial/pages/fork.html) by Karl Broman