1
0
Files
common/README.md
Andreas Müller 25b58f0bb6
All checks were successful
Branch Build / build-test-deploy (push) Successful in 2m2s
Documentation Build / build-test-deploy (push) Successful in 2m25s
Updated dependencies, removed .NETStandard2.0
2026-02-17 17:57:51 +01:00

32 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: [docfx](https://docs.am-wd.de/common/)
## Use in projects
Create a `nuget.config` file in your root project folder (where the `.sln(x)` 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>
```