Don't want to use the official releases?
Build the project yourself:
- Open a new commandline / shell in the repository-root
- Move into
src
- Build the project
dotnet build
- Select the subfolder
Aves
(main project) and create an executable withdotnet publish -r <TargetedRuntime(OS)Identifier> -p:PublishSingleFile=true
- for the targeted
RuntimeIdentfier
see https://docs.microsoft.com/en-us/dotnet/core/rid-catalog - example for windows:
dotnet publish -r win10-x64 -p:PublishSingleFile=true
- for the targeted
- Go back into the root, select ADB and publish it
dotnet publish -c Release
- Copy the generated content (e.g.
ADB/bin/Debug/net8.0/publish
) into thebuild
folder - Run
ADB.exe -r <TargetedRuntime(OS)Identifier> --bc <YourConfiguration(Release/Debug)>