ModularPipelines.Analyzers
1.9.36
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ModularPipelines.Analyzers --version 1.9.36
NuGet\Install-Package ModularPipelines.Analyzers -Version 1.9.36
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="ModularPipelines.Analyzers" Version="1.9.36" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ModularPipelines.Analyzers --version 1.9.36
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ModularPipelines.Analyzers, 1.9.36"
#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 ModularPipelines.Analyzers as a Cake Addin #addin nuget:?package=ModularPipelines.Analyzers&version=1.9.36 // Install ModularPipelines.Analyzers as a Cake Tool #tool nuget:?package=ModularPipelines.Analyzers&version=1.9.36
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ModularPipelines
Define your pipeline in .NET! Strong types, intellisense, parallelisation, and the entire .NET ecosystem at your fingertips.
Available Modules
Getting Started
If you want to see how to get started, or want to know more about ModularPipelines, read the Wiki page here
Code Examples
Program.cs - Main method
await PipelineHostBuilder.Create()
.ConfigureAppConfiguration((context, builder) =>
{
builder.AddJsonFile("appsettings.json")
.AddUserSecrets<Program>()
.AddEnvironmentVariables();
})
.ConfigureServices((context, collection) =>
{
collection.Configure<NuGetSettings>(context.Configuration.GetSection("NuGet"));
collection.Configure<PublishSettings>(context.Configuration.GetSection("Publish"));
})
.AddModule<FindNugetPackagesModule>()
.AddModule<UploadNugetPackagesModule>()
.ExecutePipelineAsync();
Custom Modules
public class FindNugetPackagesModule : Module<FileInfo>
{
protected override async Task<ModuleResult<List<File>>?> ExecuteAsync(IModuleContext context, CancellationToken cancellationToken)
{
await Task.Yield();
return context.FileSystem.GetFiles(context.Environment.GitRootDirectory!.Path,
SearchOption.AllDirectories,
path => path.Extension is ".nupkg")
.ToList();
}
}
[DependsOn<FindNugetPackagesModule>]
public class UploadNugetPackagesModule : Module<FileInfo>
{
private readonly IOptions<NuGetSettings> _nugetSettings;
public UploadNugetPackagesModule(IOptions<NuGetSettings> nugetSettings)
{
_nugetSettings = nugetSettings;
}
protected override async Task<ModuleResult<CommandResult>?> ExecuteAsync(IModuleContext context, CancellationToken cancellationToken)
{
var nugetFiles = await GetModule<FindNugetPackagesModule>();
return await context.NuGet()
.UploadPackages(new NuGetUploadOptions(packagePaths.Value!.AsPaths(), new Uri("https://api.nuget.org/v3/index.json"))
{
ApiKey = _nugetSettings.Value.ApiKey,
NoSymbols = true
});
}
}
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ModularPipelines.Analyzers:
Package | Downloads |
---|---|
ModularPipelines
Write your pipelines in C#! |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.42.87 | 1,173 | 10/28/2024 |
2.42.67 | 4,183 | 9/29/2024 |
2.42.59 | 1,668 | 9/19/2024 |
2.42.54 | 489 | 9/19/2024 |
2.42.53 | 403 | 9/19/2024 |
2.42.47 | 1,395 | 9/13/2024 |
2.42.45 | 5,819 | 9/12/2024 |
2.42.9 | 2,139 | 9/5/2024 |
2.42.8 | 937 | 9/4/2024 |
2.42.0 | 594 | 9/4/2024 |
2.41.4 | 628 | 9/3/2024 |
2.41.0 | 721 | 9/3/2024 |
2.40.18 | 601 | 9/2/2024 |
2.40.15 | 515 | 9/2/2024 |
2.40.10 | 581 | 9/2/2024 |
2.40.8 | 537 | 9/2/2024 |
2.40.4 | 1,966 | 8/29/2024 |
2.40.1 | 622 | 8/28/2024 |
2.38.36 | 683 | 8/26/2024 |
2.38.25 | 1,327 | 8/12/2024 |
2.38.2 | 1,019 | 7/27/2024 |
2.38.1 | 396 | 7/27/2024 |
2.37.9 | 2,186 | 7/14/2024 |
2.37.1 | 107 | 7/14/2024 |
2.36.29 | 1,045 | 7/5/2024 |
2.36.23 | 892 | 6/30/2024 |
2.36.4 | 1,572 | 6/7/2024 |
2.35.0 | 821 | 6/2/2024 |
2.34.0 | 828 | 5/23/2024 |
2.33.0 | 1,027 | 5/20/2024 |
2.32.0 | 727 | 5/17/2024 |
2.31.3 | 1,551 | 4/15/2024 |
2.31.0 | 745 | 4/15/2024 |
2.30.9 | 971 | 3/27/2024 |
2.30.5 | 585 | 3/26/2024 |
2.30.3 | 707 | 3/26/2024 |
2.29.32 | 764 | 3/26/2024 |
2.29.22 | 1,166 | 3/8/2024 |
2.29.15 | 883 | 3/1/2024 |
2.29.11 | 870 | 2/27/2024 |
2.29.9 | 962 | 2/26/2024 |
2.29.0 | 872 | 2/25/2024 |
2.28.0 | 843 | 2/23/2024 |
2.27.12 | 1,040 | 2/15/2024 |
2.27.9 | 803 | 2/14/2024 |
2.27.3 | 1,029 | 2/8/2024 |
2.27.0 | 882 | 2/8/2024 |
2.26.8 | 1,164 | 2/4/2024 |
2.26.0 | 985 | 1/29/2024 |
2.25.0 | 920 | 1/28/2024 |
2.24.9 | 1,105 | 1/25/2024 |
2.24.4 | 903 | 1/25/2024 |
2.24.1 | 1,236 | 1/22/2024 |
2.22.0 | 1,102 | 1/18/2024 |
2.21.12 | 985 | 1/18/2024 |
2.21.9 | 1,009 | 1/18/2024 |
2.21.4 | 1,069 | 1/13/2024 |
2.21.0 | 955 | 1/12/2024 |
2.20.2 | 1,039 | 1/11/2024 |
2.19.2 | 1,150 | 12/27/2023 |
2.19.0 | 839 | 12/26/2023 |
2.18.8 | 661 | 12/26/2023 |
2.18.0 | 1,172 | 12/24/2023 |
2.17.25 | 700 | 12/22/2023 |
2.17.20 | 772 | 12/5/2023 |
2.17.0 | 831 | 11/24/2023 |
2.16.2 | 629 | 11/23/2023 |
2.16.0 | 629 | 11/23/2023 |
2.15.24 | 620 | 11/22/2023 |
2.15.21 | 636 | 11/22/2023 |
2.15.17 | 643 | 11/20/2023 |
2.15.3 | 680 | 11/9/2023 |
2.15.0 | 549 | 11/8/2023 |
2.14.9 | 639 | 11/6/2023 |
2.14.7 | 698 | 11/6/2023 |
2.14.1 | 639 | 11/6/2023 |
2.13.63 | 704 | 10/29/2023 |
2.13.47 | 724 | 10/20/2023 |
2.13.8 | 627 | 10/13/2023 |
2.13.5 | 618 | 10/13/2023 |
2.12.15 | 602 | 10/10/2023 |
2.12.11 | 712 | 10/10/2023 |
2.12.5 | 705 | 10/6/2023 |
2.12.1 | 668 | 10/4/2023 |
2.11.12 | 632 | 10/1/2023 |
2.11.11 | 637 | 9/30/2023 |
2.11.9 | 682 | 9/30/2023 |
2.11.4 | 707 | 9/30/2023 |
2.11.0 | 701 | 9/29/2023 |
2.10.6 | 749 | 9/29/2023 |
2.10.0 | 655 | 9/28/2023 |
2.9.0 | 632 | 9/28/2023 |
2.8.23 | 569 | 9/26/2023 |
2.8.12 | 617 | 9/24/2023 |
2.8.4 | 557 | 9/24/2023 |
2.8.0 | 555 | 9/24/2023 |
2.7.10 | 608 | 9/23/2023 |
2.7.6 | 615 | 9/22/2023 |
2.6.0 | 585 | 9/19/2023 |
2.5.11 | 551 | 9/16/2023 |
2.5.5 | 590 | 9/14/2023 |
2.5.2 | 624 | 9/14/2023 |
2.5.0 | 545 | 9/14/2023 |
2.4.0 | 616 | 9/12/2023 |
2.3.2 | 612 | 9/11/2023 |
2.3.0 | 635 | 9/11/2023 |
2.2.0 | 656 | 9/11/2023 |
2.0.8 | 608 | 9/7/2023 |
2.0.5 | 656 | 9/6/2023 |
2.0.0 | 682 | 9/6/2023 |
1.9.38 | 691 | 9/5/2023 |
1.9.36 | 597 | 9/5/2023 |
1.9.35 | 591 | 9/4/2023 |
1.9.31 | 587 | 9/4/2023 |
1.9.28 | 585 | 9/4/2023 |
1.9.22 | 606 | 9/3/2023 |
1.9.17 | 678 | 9/3/2023 |
1.9.15 | 633 | 9/3/2023 |
1.9.8 | 620 | 9/1/2023 |
1.9.6 | 591 | 9/1/2023 |
1.9.4 | 687 | 9/1/2023 |
1.9.1 | 601 | 8/31/2023 |
1.8.22 | 653 | 8/29/2023 |
1.8.18 | 640 | 8/29/2023 |
1.8.8 | 670 | 8/24/2023 |
1.8.6 | 665 | 8/24/2023 |
1.7.0 | 601 | 8/22/2023 |
1.6.3 | 642 | 8/17/2023 |
1.6.2 | 667 | 8/17/2023 |
1.6.1 | 730 | 8/17/2023 |
1.6.0 | 743 | 8/17/2023 |
1.5.5 | 699 | 8/15/2023 |
1.5.0 | 680 | 8/14/2023 |
1.4.34 | 728 | 8/11/2023 |
1.4.33 | 665 | 8/11/2023 |
1.4.31 | 718 | 8/11/2023 |
1.4.29 | 721 | 8/10/2023 |
1.4.22 | 734 | 8/10/2023 |
1.4.21 | 723 | 8/10/2023 |
1.4.20 | 710 | 8/10/2023 |
1.4.18 | 695 | 8/7/2023 |
1.4.17 | 758 | 8/7/2023 |
1.4.15 | 718 | 8/7/2023 |
1.4.14 | 677 | 8/2/2023 |
1.4.12 | 575 | 8/2/2023 |
1.4.11 | 609 | 7/19/2023 |
1.4.10 | 646 | 7/19/2023 |
1.4.9 | 612 | 7/18/2023 |
1.4.8 | 611 | 7/18/2023 |
1.4.6 | 607 | 7/13/2023 |
1.4.5 | 594 | 7/11/2023 |
1.4.4 | 609 | 7/10/2023 |
1.4.3 | 602 | 7/10/2023 |
1.4.2 | 647 | 7/7/2023 |
1.4.1 | 606 | 7/6/2023 |
1.4.0 | 626 | 7/6/2023 |
1.3.17 | 656 | 7/5/2023 |
1.3.15 | 674 | 7/5/2023 |
1.3.14 | 569 | 7/5/2023 |
1.3.13 | 633 | 7/5/2023 |
1.3.12 | 627 | 6/30/2023 |
1.3.11 | 573 | 6/30/2023 |
1.3.8 | 598 | 6/30/2023 |
1.3.7 | 588 | 6/30/2023 |
1.3.6 | 611 | 6/30/2023 |
1.3.5 | 568 | 6/30/2023 |
1.3.4 | 604 | 6/30/2023 |
1.3.3 | 559 | 6/29/2023 |
1.3.2 | 608 | 6/29/2023 |
1.3.1 | 557 | 6/29/2023 |
1.3.0 | 597 | 6/29/2023 |
1.2.0 | 598 | 6/29/2023 |
1.1.0 | 630 | 6/29/2023 |
1.0.1 | 581 | 6/29/2023 |
0.3.26 | 578 | 6/29/2023 |
0.2.0 | 173 | 6/29/2023 |
0.1.0 | 170 | 6/28/2023 |