AlvorKit.FreeType.Backend
2.14.3.10
See the version list below for details.
dotnet add package AlvorKit.FreeType.Backend --version 2.14.3.10
NuGet\Install-Package AlvorKit.FreeType.Backend -Version 2.14.3.10
<PackageReference Include="AlvorKit.FreeType.Backend" Version="2.14.3.10" />
<PackageVersion Include="AlvorKit.FreeType.Backend" Version="2.14.3.10" />
<PackageReference Include="AlvorKit.FreeType.Backend" />
paket add AlvorKit.FreeType.Backend --version 2.14.3.10
#r "nuget: AlvorKit.FreeType.Backend, 2.14.3.10"
#:package AlvorKit.FreeType.Backend@2.14.3.10
#addin nuget:?package=AlvorKit.FreeType.Backend&version=2.14.3.10
#tool nuget:?package=AlvorKit.FreeType.Backend&version=2.14.3.10
AlvorKit
AlvorKit is a C# game development kit
Binding development mode
Projects use published binding packages by default. To develop against generated bindings in
out/bindgen, add an ignored AlvorKit.Local.props at the repository root:
<Project>
<PropertyGroup>
<UseLocalBindings>true</UseLocalBindings>
</PropertyGroup>
</Project>
Generate the local projects with:
dotnet run --project scripts\AlvorKit.Script.Bindgen -- 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:
dotnet run --project scripts\AlvorKit.Script.Lint
The linter coordinates C# formatting, Prettier checks, EditorConfig checks, and GitHub Actions workflow validation. To apply supported formatter fixes locally, run:
dotnet run --project scripts\AlvorKit.Script.Lint -- --fix
Unit test coverage
Generate a local coverage report with:
dotnet run --project scripts\AlvorKit.Script.TestCoverage -- --threshold 0
Open the ReportGenerator HTML report:
Invoke-Item .\out\coverage\html\index.html
To run coverage for one test project while iterating, pass a project name or path:
dotnet run --project scripts\AlvorKit.Script.TestCoverage -- --test-project AlvorKit.Script.NativeBuild.Test --threshold 0
Raw per-project coverage files and logs are written under out/coverage/projects/<test-project>/.
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.json.
| Product | Versions 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. |
-
net10.0
- AlvorKit.FreeType (>= 2.14.3.10)
- AlvorKit.FreeType.Native (>= 2.14.3.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.