Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 998 Bytes

File metadata and controls

67 lines (43 loc) · 998 Bytes

Loom.Build

Opinionated build tool for dotnet projects using Modular Pipelines

Installation

Install locally from repo root:

dotnet new tool-manifest
dotnet tool install loom

Usage

dotnet loom --help

Use init to generate config and workflow files

dotnet loom init --force

Subcommands

Loom provides subcommands for each build stage. You can run dotnet loom [command] --help for specific options.

Test

Run your test suite:

dotnet loom test

Build & Publish

Configure loom.json to define artifacts, then build or publish them:

dotnet loom build
dotnet loom publish

Clean & Fresh Runs

Manual clean:

dotnet loom clean

Prepend the Clean module to any pipeline run using the --fresh flag:

dotnet loom release --fresh

Global Options

Most commands support standard overrides:

dotnet loom build --rid win-x64