-
Notifications
You must be signed in to change notification settings - Fork 0
Building from Source
Björn Schlaack edited this page Jul 26, 2026
·
1 revision
- .NET 8 SDK
- Git
- FFmpeg/FFprobe for runtime media features
- Windows: Visual Studio C++ tools for the native cwASIO bridge
dotnet build Orynivo.Core/Orynivo.Core.csproj
dotnet build Orynivo/Orynivo.csproj
dotnet build Orynivo.Server/Orynivo.Server.csprojOn Windows, build.ps1 builds the vendored cwASIO bridge and optionally the
Steinberg bridge when an ASIO SDK directory is supplied.
dotnet restore Orynivo/Orynivo.csproj --runtime linux-x64
dotnet publish Orynivo/Orynivo.csproj -c Release -r linux-x64 \
--self-contained true --no-restoreReplace the runtime with osx-arm64 or osx-x64:
dotnet restore Orynivo/Orynivo.csproj --runtime osx-arm64
dotnet publish Orynivo/Orynivo.csproj -c Release -r osx-arm64 \
--self-contained true --no-restoreTagged release workflows assemble platform packages and publish them to a draft GitHub Release. The signed-manifest workflow refuses to sign incomplete asset sets.
See the repository AGENTS.md files before making architectural changes.