Frends Task for executing queries or non-queries to PostgreSQL database.
You can install the Task via Frends UI Task View or you can find the NuGet package from the following NuGet feed https://www.myget.org/F/frends-tasks/api/v2.
Build the project
dotnet build
Run tests
To run tests you need to test database. You can start a test database using Docker with
docker run -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d postgres
When container is running you can start test with
dotnet test
Create a NuGet package
dotnet pack --configuration Release