.NET workspace builder examples
LibTmux.Workspace 0.0.0-alpha.14 · Source
The workspace package README demonstrates parsing a two-window description and inspecting its typed result. Its documentation examples are compiled and run by the port’s README example tests.
Parse and buildLink to section
Within an async method that already has a LibTmux Server and cancellation
token ct, import LibTmux.Workspace and use:
WorkspaceFile workspace = WorkspaceFile.Parse(""" session_name: api start_directory: /tmp windows: - window_name: editor panes: - shell_command: echo editing - window_name: server panes: - shell_command: echo serving """);
WorkspaceResult result = await new WorkspaceBuilder(server) .BuildAsync(workspace, ct);Console.WriteLine($"{result.Session.Name}: {result.Windows.Count} windows");The workspace starts in the configured directory and returns two windows.
The guide supplies the missing application setup and a server
scope that performs cleanup. Use the result’s Unsupported entries to report
layouts rejected by tmux.
VerificationLink to section
The port’s integration project contains workspace parsing, builder, readiness, and partial-result checks. From a prepared source checkout, run them with:
$ dotnet test tests/LibTmux.IntegrationTests \ --framework net10.0 \ --filter FullyQualifiedName~WorkspaceA separate package-consumer program parses workspace data through the packed package to check that the optional dependency is usable outside the source project. Rendering this page is not an execution of either test path.