Forestry .NET is a set of open-source libraries for building modern web applications using ASP.NET Core.
The patching package adds support for executing code based database updates, either once or on every application start.
services.AddPatching(options => {
options.ConnectionString = Configuration["Database:ConnectionString"];
})
.AddBootstrapPatch<ApplicationBootstrapPatch>()
.AddPatch<OneTimePatch>();
- Clean up code for Open Source release.
- Update README as needed.
- Add tests.
- Create github actions for CI/CD.