1
0
Files
common/README.md
Andreas Müller 5d606bea89
All checks were successful
Branch Build / build-test-deploy (push) Successful in 1m46s
Migrated CI from gitlab to gitea
2026-01-12 20:26:51 +01:00

30 lines
1.5 KiB
Markdown

# Common
This is a collection of commonly used extensions, etc. on my projects.
To save time, they are all packed to NuGet packages.
| Package | Version |
| ------------------------------- | ------- |
| AMWD.Common | ![https://nuget.am-wd.de/packages/amwd.common/](https://services.am-wd.de/nuget.php?package=AMWD.Common) |
| AMWD.Common.AspNetCore | ![https://nuget.am-wd.de/packages/amwd.common.aspnetcore/](https://services.am-wd.de/nuget.php?package=AMWD.Common.AspNetCore) |
| AMWD.Common.EntityFrameworkCore | ![https://nuget.am-wd.de/packages/amwd.common.entityframeworkcore/](https://services.am-wd.de/nuget.php?package=AMWD.Common.EntityFrameworkCore) |
| AMWD.Common.MessagePack | ![https://nuget.am-wd.de/packages/amwd.common.messagepack/](https://services.am-wd.de/nuget.php?package=AMWD.Common.MessagePack) |
| AMWD.Common.Test | ![https://nuget.am-wd.de/packages/amwd.common.test/](https://services.am-wd.de/nuget.php?package=AMWD.Common.Test) |
## Documentation
Changelog is available here: [CHANGELOG](CHANGELOG.md)
Documentation can be found here: [AM.WD Wiki](https://wiki.am-wd.de/libs/common)
## Use in projects
Create a `nuget.config` file in your root project folder (where the `.sln` file is located)
```xml
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AM.WD" value="https://nuget.am-wd.de/v3/index.json" />
</packageSources>
</configuration>
```