### Install and Use dotnet-outdated for NuGet Package Management Source: https://github.com/pxtools/pxapispecs/blob/master/README.md Installs the global dotnet-outdated tool for managing NuGet package versions within a .NET project. It provides commands to upgrade packages to minor versions or all available new versions, with the latter potentially including breaking API changes. Ensure the .NET SDK is installed. ```shell dotnet tool install --global dotnet-outdated-tool ``` ```shell dotnet outdated --upgrade --version-lock Major ``` ```shell dotnet outdated --upgrade ``` -------------------------------- ### Generate ASP.NET Core Server Code from OpenAPI Spec Source: https://github.com/pxtools/pxapispecs/blob/master/README.md Generates ASP.NET Core server code from the PxAPI-2.yml specification using Docker and the OpenAPI Generator CLI. This command mounts the current directory to the container and outputs the generated code to the same location. It requires Docker to be installed and accessible. ```shell docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v7.11.0 generate -i /local/PxAPI-2.yml -g aspnetcore -c /local/aspnetcore-generator-config.yml -o /local ``` -------------------------------- ### Build Project Script Source: https://github.com/pxtools/pxapispecs/blob/master/README.md Executes the build script for the project. Separate scripts are provided for Linux/OS X and Windows operating systems to compile and package the project. ```shell sh build.sh ``` ```shell build.bat ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.