28 lines
1.7 KiB
Markdown
28 lines
1.7 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 |  |
|
|
| AMWD.Common.AspNetCore |  |
|
|
| AMWD.Common.EntityFrameworkCore |  |
|
|
| Build Pipeline |  |
|
|
|
|
## Documentation
|
|
|
|
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>
|
|
```
|