shipyard 0.0.5

dotnet tool install --global shipyard --version 0.0.5
                    
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 shipyard --version 0.0.5
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=shipyard&version=0.0.5
                    
nuke :add-package shipyard --version 0.0.5
                    

Shipyard Build & Tests NuGet Version

Project to build and package .NET applications on Linux.

Currently implemented:

  • RPM Packages
  • DEB Packages

Future Goals:

  • tarball
  • AppImage
  • Flatpaks
  • Snaps

Installing

Right now, the easiest way to install and run this tool is using dotnet tool install --global shipyard. You'll also need to install rpmbuild and dpkg from your systems package manager, depending on which package type you'd like to build.

Running

You'll need to create a json configuration file, below is a sample based on Shipyards own configuration:

{
  "$schema": "https://raw.githubusercontent.com/CorruptComputer/Shipyard/refs/heads/release/shipyard.schema.json",
  "executable": "shipyard",
  "version": "0.0.4",
  "author": "Nickolas Gupton",
  "license": "MIT",
  "repositoryUrl": "https://github.com/CorruptComputer/Shipyard",
  "dotnet": {
    "projectFile": "./Shipyard.csproj",
    "framework": "net10.0",
    "configuration": "Release",
    "runtimes": [
      "linux-x64"
    ],
    "publish": []
  },
  "formats": [
    {
      "format": "rpm",
      "packageName": "Shipyard",
      "release": 1,
      "provides": [],
      "dependsOn": [
        "dotnet-runtime-10.0",
        "dotnet-sdk-10.0",
        "rpm-build",
        "dpkg"
      ]
    },
    {
      "format": "deb",
      "packageName": "Shipyard",
      "section": "utils",
      "priority": "optional",
      "maintainer": "Nickolas Gupton <email@example.com>",
      "depends": [
        "dotnet-runtime-10.0",
        "dotnet-sdk-10.0",
        "rpm",
        "dpkg"
      ]
    }
  ]
}

Once this is created and shipyard is installed, you should be able to just run shipyard --config path/to/shipyard.json --output path/to/output/dir.

Contributing

Since this is still very early in this project, I will probably not accept any contributions. Once things have stabilized and I'm able to achieve what I want from this, contributions will be more than welcome.

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.

This package has no dependencies.

Version Downloads Last Updated
0.0.5 123 1/3/2026
0.0.4 158 12/20/2025
0.0.3 133 12/20/2025
0.0.2 127 12/20/2025
0.0.1 127 12/20/2025