Cake.Issues.BuildServer
6.0.0-beta0002
dotnet add package Cake.Issues.BuildServer --version 6.0.0-beta0002
NuGet\Install-Package Cake.Issues.BuildServer -Version 6.0.0-beta0002
<PackageReference Include="Cake.Issues.BuildServer" Version="6.0.0-beta0002" />
<PackageVersion Include="Cake.Issues.BuildServer" Version="6.0.0-beta0002" />
<PackageReference Include="Cake.Issues.BuildServer" />
paket add Cake.Issues.BuildServer --version 6.0.0-beta0002
#r "nuget: Cake.Issues.BuildServer, 6.0.0-beta0002"
#:package Cake.Issues.BuildServer@6.0.0-beta0002
#addin nuget:?package=Cake.Issues.BuildServer&version=6.0.0-beta0002&prerelease
Addin for reporting issues to build servers for the Cake build automation system
The issues addin for Cake allows you to report issues to build servers.
Cake.Issues redefines issue management within the Cake build system by offering a comprehensive, universal, and extensible solution. The unique capabilities of the addins empower development teams to enforce coding standards, generate insightful reports, seamlessly incorporate various linting tools, and streamlining the integration with build servers. With its modular architecture and extensive set of aliases, Cake.Issues provides a future-proof infrastructure for issue management in Cake builds, fostering a more efficient and adaptable development process.
For more information and extensive documentation see the Cake.Issues website. For general information about the Cake build automation system see the Cake website.
How to use
Integrating Cake.Issues into your Cake build is straightforward. With minimal setup, teams can enjoy the benefits of enhanced code quality management seamlessly integrated into their existing build pipeline.
NOTE: Cake.Issues.Recipe for Cake .NET Tool and Cake.Frosting.Issues.Recipe provide a single NuGet package, which can be used inside your projects build to add fully flavored issue management, including parsing of linter outputs, integration with build systems and pull requests and creation of different reports.
Reporting issues to build servers
The addin provides the ReportIssuesToBuildServer alias to report issues to build servers.
It needs an additional NuGet package to provide the specific build server implementation:
| Cake .NET Tool Addin | Cake Frosting Addin | Description |
|---|---|---|
| Cake.Issues.BuildServer.AppVeyor | Cake.Frosting.Issues.BuildServer.AppVeyor | Integration with AppVeyor builds. |
| Cake.Issues.BuildServer.GitHubActions | Cake.Frosting.Issues.BuildServer.GitHubActions | Integration with GitHub Actions. |
See Build Servers for a list of available build server addins and detailed documentation.
Reading issues
Issues can be read using the Cake.Issues addin for Cake .NET Tool or Cake.Frosting.Issues addin for Cake Frosting together with any of the available Issue Provider addins.
Example
The following example will read issues reported as MsBuild warnings and report them to AppVeyor:
[TaskName("Report-Issues")]
public sealed class ReportIssuesTask : FrostingTask<BuildContext>
{
public override void Run(BuildContext context)
{
var issueProvider =
context.MsBuildIssuesFromFilePath(
context.MsBuildLogFilePath,
context.MsBuildBinaryLogFileFormat);
var result =
context.ReportIssuesToBuildServer(
issueProvider,
context.AppVeyorBuilds(),
context.RootDirectoryPath);
context.Information("{0} issues were reported to AppVeyor", result.PostedIssues.Count());
}
}
Support & Discussion
For questions and to discuss ideas & feature requests, use the GitHub discussions on the Cake GitHub repository, under the Extension Q&A category.
Contributing
Contributions are welcome. See Contribution Guidelines.
License
MIT License - Copyright © Cake Issues contributors
Binary distributions for some addins contain third-party code which is licensed under its own respective license. See LICENSE for details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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. |
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 6.0.0-beta0002 | 55 | 1/14/2026 |