Wkg.AspNetCore
is a company-internal library providing reusable components for the development of ASP .NET Core applications at WKG. It provides new abstractions over existing ASP .NET Core components, request-scoped database transactions, new authentication options, data validation, and more.
A core goal of Wkg.AspNetCore
is to simplify the development of ASP .NET Core applications by providing a set of reusable components that can be easily integrated into new or existing projects, allowing for consistent and maintainable codebases and easier testing with the Wkg.AspNetCore.TestAdapters
library that can also be found in this repository.
As part of our commitment to open-source software, we are making this library available to the public under the GNU General Public License v3.0. We hope that it will be useful to other developers and that the community will contribute to its further development.
Install the Wkg.AspNetCore
NuGet package by adding the following package reference to your project file:
<ItemGroup>
<PackageReference Include="Wkg.AspNetCore" Version="X.X.X" />
</ItemGroup>
⚠️ Warning ReplaceX.X.X
with the latest stable version available on the nuget feed, where the major version must match the major version of your targeted .NET runtime.
⚠️ Warning To use theWkg.AspNetCore.TestAdapters
library in your test projects, make sure that the version of theWkg.AspNetCore.TestAdapters
package exactly matches the version of theWkg.AspNetCore
package that you are using in your main project.
For technical documentation and usage examples, please refer to the documentation.