dotnet-tool-gist 1.0.3

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

license alternate text is missing from this package README image github actions version

dotnet-tool-gist

dotnet-tool-gist is a command-line tool for using GitHub Gists as a package repository. With dotnet-tool-gist, you can easily install, restore and manage packages directly from the .NET command-line interface (CLI), using Gists as your package repository.

Introduction

There are several reasons why you might choose to use a package manager based on GitHub Gist over another one like NuGet:

  • Simplicity: GitHub Gist is a simple way to share code snippets and small applications. It requires no setup, and you can create a gist with just a few clicks. This makes it a great option if you need to share code quickly and easily.

  • Version Control: GitHub Gist provides version control, allowing you to track changes to your code over time. This makes it easy to collaborate with others and keep track of changes to your code.

  • Lightweight: GitHub Gist is lightweight and doesn't have any dependencies. This makes it a great option if you need to quickly add a small piece of functionality to your project without adding unnecessary bloat.

  • Community: GitHub Gist is part of the GitHub ecosystem, which has a large and active community of developers. This means that there are many resources available if you need help with your code, and you can easily find examples of how others have solved similar problems.

However, it's important to note that GitHub Gist is not a full-fledged package manager like NuGet. It's best suited for sharing small code snippets or simple applications, rather than managing complex dependencies for larger projects. Ultimately, the choice of which package manager to use will depend on your specific needs and the requirements of your project.

Installation

To install dotnet-tool-gist, you'll need to have the .NET Core SDK installed on your machine. If you don't have it already, you can download it from the official .NET website: https://dotnet.microsoft.com/download.

Once you have the .NET Core SDK installed, you can install dotnet-tool-gist using the following command:

dotnet tool install -g dotnet-tool-gist

This will install the latest version of dotnet-tool-gist globally on your machine, so you can use it from anywhere in your terminal.

To verify that dotnet-tool-gist was insdotnettalled correctly, you can run the following command:

dotnet gist --version

If everything was installed correctly, you should see the version number of dotnet-tool-gist printed to the terminal.

Usage

Once you have dotnet-tool-gist installed, you can use it to manage your GitHub Gists directly from the .NET CLI. Here are some examples of how you can use dotnet-tool-gist:

Add

Add a gist reference to a project.

dotnet gist [<project>] add <gist-id> [--version <version>] [--file <file>] [--out <out>]
  • <project>: The project file to add the reference. If not specified, the current directory must be a project.
  • <gist-id>: The gist id.
  • <version>: The gist version. If not specified, the latest version will be used.
  • <file>: The file glob pattern to add. If not specified, all files will be added.
  • <out>: The output directory. If not specified, the files will be added to the project directory: gist/<gist-id>/<gist-version>.

Some examples:

dotnet gist add <gist-id>
dotnet gist MyProject/MyProject.csproj add <gist-id>
dotnet gist MyProject/MyProject.csproj add <gist-id> --version <version>
dotnet gist MyProject/MyProject.csproj add <gist-id> --version <version> --file *.cs
dotnet gist add <gist-id> --version <version> --file *.cs --out ReferencedCode/

Remove

Remove a gist reference from a project.

dotnet gist [<project>] remove <gist-id>
  • <project>: The project file to remove the reference. If not specified, the current directory must be a project.
  • <gist-id>: The gist id.

List

List all gist references from a project.

dotnet gist [<project>] list
  • <project>: The project file to list the references. If not specified, the current directory must be a project.

Update

Update a gist reference version from a project.

dotnet gist [<project>] update <gist-id> [--version <version>]
  • <project>: The project file to update the reference. If not specified, the current directory must be a project.
  • <gist-id>: The gist id.
  • <version>: The gist version. If not specified, the latest version will be used.

To update all references to the latest version:

dotnet gist update

Restore

Restore all gist references from a project.

dotnet gist [<project>] restore

How it works

Dotnet gist uses the Github Gists API to get the gist files and add them to your project.

Each gist reference is added to the project as a GistReference item under ProjectExtensions tag (a tag ignored by MsBuild and created to extend our dotnet projects) with the following metadata:

  • Id: The gist id.
  • Version: The gist version.
  • FilePattern: The file glob pattern used to add the files.
  • OutputPath: The output directory.

There is an internal cache of the gist files that is used to avoid downloading the same gist multiple times. The cache is stored in the .gist folder under the obj project folder.

License

dotnet-tool-gist is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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.3 271 3/16/2023
1.0.2 238 3/9/2023
1.0.1 246 3/9/2023
1.0.1-beta4 264 3/9/2023
1.0.1-beta3 198 3/9/2023
1.0.1-beta2 312 3/9/2023
1.0.1-beta1 229 3/9/2023
1.0.0 248 3/9/2023