AlvorKit.MiniAudio.Backend 0.11.25.13

dotnet add package AlvorKit.MiniAudio.Backend --version 0.11.25.13
                    
NuGet\Install-Package AlvorKit.MiniAudio.Backend -Version 0.11.25.13
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AlvorKit.MiniAudio.Backend" Version="0.11.25.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AlvorKit.MiniAudio.Backend" Version="0.11.25.13" />
                    
Directory.Packages.props
<PackageReference Include="AlvorKit.MiniAudio.Backend" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AlvorKit.MiniAudio.Backend --version 0.11.25.13
                    
#r "nuget: AlvorKit.MiniAudio.Backend, 0.11.25.13"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AlvorKit.MiniAudio.Backend@0.11.25.13
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AlvorKit.MiniAudio.Backend&version=0.11.25.13
                    
Install as a Cake Addin
#tool nuget:?package=AlvorKit.MiniAudio.Backend&version=0.11.25.13
                    
Install as a Cake Tool

AlvorKit

AlvorKit is a C# game development kit

Binding development mode

Projects use published binding packages by default. When an exact generated project exists under out/bindgen, consumers automatically use that local project instead of the pinned package for that binding. Build and restore intentionally do not run bindgen automatically. Generate the local project you are changing explicitly with:

dotnet run --project scripts\AlvorKit.Script.Bindgen -- <library>

If the generated project is missing, consumers fall back to the pinned package version in AlvorKit.Packages.props. Use all only when bootstrapping every binding project or making a change that intentionally affects them all.

To compare generator changes without overwriting the default local bindings, write snapshots under out/ and diff them:

dotnet run --project scripts\AlvorKit.Script.Bindgen -- xxhash --output-root out\bindgen-review\xxhash-before
dotnet run --project scripts\AlvorKit.Script.Bindgen -- xxhash --output-root out\bindgen-review\xxhash-after
git diff --no-index -- out\bindgen-review\xxhash-before out\bindgen-review\xxhash-after

Linting

Run the repository linter from the repository root with scoped includes while iterating:

dotnet run --project scripts\AlvorKit.Script.Lint -- --include "scripts/**/*.cs"

Repeat --include for multiple files, directories, or globs. Use --fix with the same scope to apply supported formatter fixes locally:

dotnet run --project scripts\AlvorKit.Script.Lint -- --fix --include "AGENTS.md"

Run the full repository linter for broad changes or CI parity checks:

dotnet run --project scripts\AlvorKit.Script.Lint

The linter coordinates C# formatting, Prettier checks, EditorConfig checks, and GitHub Actions workflow validation.

Unit test coverage

Run focused coverage for a source project while iterating:

dotnet run --project scripts\AlvorKit.Script.TestCoverage -- --source-project AlvorKit.Script.NativeBuild --threshold 0

The tool runs test projects that reference the selected source project and gates coverage only on that source project. To choose tests explicitly, combine --source-project with --test-project:

dotnet run --project scripts\AlvorKit.Script.TestCoverage -- --source-project AlvorKit.Script.NativeBuild --test-project AlvorKit.Script.NativeBuild.Test --threshold 0

Run the full coverage report for broad changes or CI parity checks:

dotnet run --project scripts\AlvorKit.Script.TestCoverage -- --threshold 0

Open the ReportGenerator HTML report:

$artifacts = Get-Content .\out\coverage\latest-run.json | ConvertFrom-Json | Select-Object -ExpandProperty artifacts
Invoke-Item $artifacts.html

Each run writes isolated artifacts under out/coverage/runs/<run-id>/ by default, and the console output prints the exact agent, human, and HTML report paths. Use --run-id <name> for a stable run directory, or --output-root <path> to place isolated runs under another parent such as out/coverage/agents/<agent-id>/. out/coverage/latest-run.json is a convenience pointer to the most recent run, not a concurrency-safe artifact. The strict coverage gate is the same command without --threshold 0; it fails unless line, branch, and method coverage are all 100%.

Native package builds

Native packages are built by the shared native build runner. To see the configured native packages:

dotnet run --project scripts\AlvorKit.Script.NativeBuild -- list

Build one RID with:

dotnet run --project scripts\AlvorKit.Script.NativeBuild -- build xxhash --rid win-x64

Then pack the native project:

dotnet build -c Release native\xxhash\AlvorKit.XxHash.Native.csproj

Native package revisions live in native/<lib>/version/REVISION; generated binding package revisions live in native/<lib>/version/BINDING_REVISION. Native build settings live in native/<lib>/conf/native-build.yml.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.11.25.13 192 6/23/2026
0.11.25.12 142 6/16/2026
0.11.25.11 117 6/15/2026
0.11.25.10 103 6/15/2026
0.11.25.6 105 6/14/2026
0.11.25.5 109 6/13/2026
0.11.25.4 113 6/12/2026