AOT Client v2.3.0 NpgsqlRest v2.13.0 #4
vbilopav
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There are three files available for download:
appsettings.json
: The default configuration file. See the default configuration file.npgsqlrest-linux64
: Linux64 build. This is a self-contained ahead-of-time (AOT) compiled to native code executable for the Linux 64x systems.npgsqlrest-win64.exe
: Windows64 build. This is a self-contained ahead-of-time (AOT) compiled to native code executable for the Windows 64x systems.npgsqlrest-osx64
: maxOS build. This is a self-contained ahead-of-time (AOT) compiled to native code executable for the macOS 64x systems.NPM
Installation is possible via the NPM package manager:
npm install npgsqlrest --save-dev
The NPM package will download on installation the appropriate executable binary for your target operating system. The command will be available with the NPX runner:
$ npx npgsqlrest [arguments]
See usage for more info.
Custom Builds
The client application was built from the
NpgsqlRestClient
project directory.To create a custom build, follow these steps:
NpgsqlRestClient
project directory.dotnet publish -r win-x64 -c Release --output [target dir]
Notes:
win-x64
is the designated target OS for the build. Adjust this parameter appropriately for the target OS. See https://learn.microsoft.com/en-us/dotnet/core/rid-catalog#known-rids. The project is already configured for the AOT builds, but you will need to run the publish command from the same flavor OS as the build target OS (Windows for Windows builds, Linux for Linux builds, etc).Features
See the default configuration file with descriptions for more information.
Usage
See client changelog for more details on version changes.
This discussion was created from the release AOT Client v2.3.0 NpgsqlRest v2.13.0.
Beta Was this translation helpful? Give feedback.
All reactions