|
| 1 | +# Using this Template |
| 2 | + |
| 3 | +1. Create a new Repository in GitHub based on this template |
| 4 | + - The name should be `dbup-nameofthenewprovider` |
| 5 | + - It should be public |
| 6 | +1. Clone it |
| 7 | +1. Open it in VSCode or other light weight editor that doesn't have strong opinions about solution/project structure (i.e. not Rider/VS) |
| 8 | +1. Search for `NewProvider` and replace with the new provider's name, **turning on the preserve case option** |
| 9 | +1. Rename the following: |
| 10 | + - `dbup-newprovider.sln` |
| 11 | + - `dbup-newprovider.sln.DotSettings` |
| 12 | + - `dbup-newprovider\dbup-newprovider.csproj` |
| 13 | + - `dbup-newprovider` directory |
| 14 | +1. Run `dotnet build` to ensure it builds |
| 15 | +1. Uncomment the `push` and `pull_request` lines in `.github\workflows\main.yml` |
| 16 | +1. Delete these instructions up to and including the next line, then check in |
| 17 | + |
| 18 | +[](https://github.com/DbUp/dbup-newprovider/actions/workflows/main.yml?query=branch%3Amain) |
| 19 | +[](https://www.nuget.org/packages/dbup-newprovider) |
| 20 | +[](https://www.nuget.org/packages/dbup-newprovider) |
| 21 | +[](https://www.nuget.org/packages/dbup-newprovider) |
| 22 | + |
| 23 | +# DbUp NewProvider support |
| 24 | +DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date. |
| 25 | + |
| 26 | +## Getting Help |
| 27 | +To learn more about DbUp check out the [documentation](https://dbup.readthedocs.io/en/latest/) |
| 28 | + |
| 29 | +Please only log issue related to NewProvider support in this repo. For cross cutting issues, please use our [main issue list](https://github.com/DbUp/DbUp/issues). |
| 30 | + |
| 31 | +# Contributing |
| 32 | + |
| 33 | +See the [readme in our main repo](https://github.com/DbUp/DbUp/blob/master/README.md) for how to get started and contribute. |
0 commit comments