FluffySpoon.Publisher.DotNet 1.165.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package FluffySpoon.Publisher.DotNet --version 1.165.0
NuGet\Install-Package FluffySpoon.Publisher.DotNet -Version 1.165.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FluffySpoon.Publisher.DotNet" Version="1.165.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FluffySpoon.Publisher.DotNet --version 1.165.0
#r "nuget: FluffySpoon.Publisher.DotNet, 1.165.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FluffySpoon.Publisher.DotNet as a Cake Addin
#addin nuget:?package=FluffySpoon.Publisher.DotNet&version=1.165.0

// Install FluffySpoon.Publisher.DotNet as a Cake Tool
#tool nuget:?package=FluffySpoon.Publisher.DotNet&version=1.165.0

FluffySpoon.Publishers

Publishes NuGet and NPM packages to the respective repositories.

Usage

You can also see a command-line runnable version of the following example here.

The code below will:

  • Find all repositories in https://github.com/ffMathy that start with FluffySpoon. and have been modified within the past 30 days.
  • For each repository, sorted by update date descending:
    • Determine the version of the package. The version used will be 1.0.<number of commits in repository>.
    • For each C# project found in the src folder of the root of the repository:
      • Build src/<ProjectName> using dotnet build.
      • Test src/<ProjectName>.Tests if present using dotnet test.
      • Publish to NuGet if tests pass or no tests were present.
    • For each NodeJS project found in the src folder of the root of the repository:
      • Build the root directory using npm run build.
      • Test the root directory using npm run test.
      • Publish to NPM.
  • For each C# project, publish it to NuGet.
  • For each NodeJS project, publish it to NPM.
class Program
{
    static void Main()
    {
        var services = new ServiceCollection();

        //configure the publisher to take all GitHub repositories starting with "FluffySpoon."
        services.AddRepositoryToPackagePublisher("FluffySpoon.");

        //configure the publisher to use specific credentials for GitHub
        services.AddGitHubProviderForAccessToken("ffMathy", "my GitHub access token");

        //configure NuGet publishing
        services.AddNuGetProvider("my NuGet API key");

        //configure NPM publishing
        services.AddNpmProvider("my NPM key");

        //configure .NET Core project support
        services.AddDotNetProvider();

        //configure NodeJS project support
        services.AddNodeJsProvider();

        var provider = services.BuildServiceProvider();

        var publisher = provider.GetRequiredService<IRepositoryToPackagePublisher>();
        publisher.RefreshAllPackagesFromAllRepositoriesAsync().Wait();

        Console.WriteLine("All done!");
    }
}

Running in GitHub Actions

Below is an example of running the sample code on an GitHub Actions using environment variables.

dotnet.yml

name: .NET

on:
  push:
  schedule:
    - cron: '0 * * * *'
    
jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    
    - name: Setup .NET
      uses: actions/setup-dotnet@v1
      with:
        dotnet-version: 6.0.x
        
    - name: Build
      env:
        ProjectNamePrefix: FluffySpoon.
        GitHubUsername: ffMathy
        NuGetKey: ${{ secrets.NuGetKey }}
        NpmAuthToken: ${{ secrets.NpmAuthToken }}
        GitHubPersonalAccessToken: ${{ secrets.GitHubPersonalAccessToken }}
      run: |
        cd src
        dotnet restore
        dotnet build
        cd FluffySpoon.Publisher.Sample
        dotnet run

Running in AppVeyor

Below is an example of running the sample code on an AppVeyor build server using environment variables.

AppVeyor.yml

version: 1.0.{build}
image: Visual Studio 2017
environment:
  NuGetKey:
    secure: 14GsJ75nn9jwVPMQXN7qN8xrwhyAY8TwIvvsQ+P1yzahdtfl83J8cyN+aA9WhtSY
  ProjectNamePrefix: FluffySpoon.
  GitHubUsername: ffMathy
  NpmAuthToken:
    secure: dg3EnwKFzX5E40SPkoPK53pW2D2W5sjCGV4xhORTCoe50OEASg8Xk9mI12SBVadI
  GitHubPersonalAccessToken:
    secure: ECBBXkriJnyuksnl3PYf7PQ/WLyRZLXf9qgLyIlOIeh4e8EnYCX5gkgmyyO1/HR+
install:
- ps: |
    Install-Product node '' x64
    npm install typescript -g
build_script:
- cmd: |
    cd src
    dotnet restore
    dotnet build
    cd FluffySpoon.Publisher.Sample
    dotnet run
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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FluffySpoon.Publisher.DotNet:

Package Downloads
FluffySpoon.Publisher.NuGet The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Publishes NPM or NuGet packages automatically.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.165.0 1,447 1/13/2024
1.164.0 70 1/13/2024
1.163.0 1,728 4/17/2023
1.158.0 420 3/4/2023
1.157.0 477 2/24/2023
1.155.0 281 2/22/2023
1.154.0 267 2/21/2023
1.153.0 493 11/8/2022
1.152.0 1,113 5/4/2022
1.151.0 825 3/12/2022
1.150.0 460 3/12/2022
1.148.0 458 3/12/2022
1.147.0 457 3/12/2022
1.146.0 453 3/12/2022
1.145.0 458 3/12/2022
1.138.0 461 3/12/2022
1.111.0 13,067 11/27/2019
1.110.0 581 11/27/2019
1.109.0 1,177 11/1/2019
1.108.0 7,490 1/13/2019
1.106.0 758 1/13/2019
1.105.0 737 1/13/2019
1.104.0 770 1/13/2019
1.103.0 760 1/13/2019
1.102.0 744 1/13/2019
1.100.0 761 1/13/2019
1.99.0 730 1/13/2019
1.96.0 749 1/13/2019
1.95.0 768 1/13/2019
1.94.0 742 1/13/2019
1.0.93 754 1/13/2019
1.0.89 758 1/12/2019
1.0.88 1,422 12/13/2018
1.0.86 1,458 11/8/2018
1.0.84 995 10/28/2018
1.0.83 1,951 8/25/2018
1.0.82 1,287 8/25/2018
1.0.81 1,262 8/25/2018
1.0.80 2,149 7/18/2018
1.0.79 1,384 7/18/2018
1.0.77 1,283 7/18/2018
1.0.75 1,323 7/18/2018
1.0.74 1,276 7/18/2018
1.0.72 1,525 7/12/2018
1.0.71 1,652 7/3/2018
1.0.70 1,418 6/27/2018
1.0.64 1,707 6/13/2018
1.0.62 1,391 6/12/2018
1.0.60 1,828 5/29/2018
1.0.57 2,255 4/18/2018
1.0.56 1,415 4/6/2018
1.0.55 1,072 4/4/2018
1.0.54 1,040 4/4/2018
1.0.53 1,020 4/3/2018
1.0.52 1,014 4/3/2018
1.0.51 995 4/3/2018
1.0.50 1,049 4/3/2018
1.0.44 1,060 4/2/2018
1.0.40 4,451 8/28/2017
1.0.39 1,070 8/24/2017
1.0.37 962 8/23/2017
1.0.35 982 5/19/2017
1.0.34 977 5/19/2017
1.0.33 1,011 5/19/2017
1.0.30 972 5/19/2017
1.0.26 14,811 5/12/2017