Woven 1.0.2

dotnet tool install --global Woven --version 1.0.2
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Woven --version 1.0.2
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Woven&version=1.0.2
nuke :add-package Woven --version 1.0.2

Woven

Woven is a dotnet tool that you can install to perform the following tasks:

  • Pull a complete list of repositories into a folder - the branch/tag can be also be specified.
  • Perform a dotnet build process on each repository.

This is a perfect way to grab an entire workspace of repositories locally, perform the build process in a particular order and generate the output you need.

Installation

dotnet tool install --global woven --version 1.0.1

Uninstallation

dotnet tool uninstall woven --global

Usage

Scenario 1: Running the tool from a folder that has a weave file:

woven -o %PATH%

Substituting the %PATH% with your own.

Scenario 2: Running the tool on a specified weave file:

woven -i c:\dev\weave.xml -o %PATH%

Substituting the %PATH% with your own.

The weave file

The weave file (weave.xml) should contain something like the following:

<?xml version="1.0" encoding="utf-8"?>
<project>
	<repository>
		<name>MY_REPO</name>
		<url>https://github.com/MY_REPO</url>
        <branch>branchname</branch>
	</repository>
</project>
  • The branch element is optional and will pull the default branch.
  • Repeat the repository section for each repository you want to pull down.
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.0.2 468 6/17/2022
1.0.1 426 6/17/2022
1.0.0 470 6/16/2022