Skip to content

Commit

Permalink
(GH-488) Add Cake.Frosting.Issues.InspectCode addin
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Apr 14, 2024
1 parent a5d660b commit 3c1e197
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ For questions and to discuss ideas & feature requests, use the [GitHub discussio
| [Cake.Issues.DocFx](https://www.nuget.org/packages/Cake.Issues.DocFx) | [Cake.Issues.DocFx](https://www.nuget.org/packages/Cake.Issues.DocFx) | Issue provider for reading DocFx warnings. |
| [Cake.Issues.EsLint](https://www.nuget.org/packages/Cake.Issues.EsLint) | [Cake.Issues.EsLint](https://www.nuget.org/packages/Cake.Issues.EsLint) | Issue provider for reading ESLint issues. |
| [Cake.Issues.GitRepository](https://www.nuget.org/packages/Cake.Issues.GitRepository) | [Cake.Issues.GitRepository](https://www.nuget.org/packages/Cake.Issues.GitRepository) | Issue provider for analyzing Git repositories. |
| [Cake.Issues.InspectCode](https://www.nuget.org/packages/Cake.Issues.InspectCode) | [Cake.Issues.InspectCode](https://www.nuget.org/packages/Cake.Issues.InspectCode) | Issue provider for reading JetBrains Inspect Code issues. |
| [Cake.Issues.InspectCode](https://www.nuget.org/packages/Cake.Issues.InspectCode) | [Cake.Frosting.Issues.InspectCode](https://www.nuget.org/packages/Cake.Frosting.Issues.InspectCode) | Issue provider for reading JetBrains Inspect Code issues. |
| [Cake.Issues.Markdownlint](https://www.nuget.org/packages/Cake.Issues.Markdownlint) | [Cake.Issues.Markdownlint](https://www.nuget.org/packages/Cake.Issues.Markdownlint) | Issue provider for reading issues from markdownlint. |
| [Cake.Issues.Sarif](https://www.nuget.org/packages/Cake.Issues.Sarif) | [Cake.Frosting.Issues.Sarif](https://www.nuget.org/packages/Cake.Frosting.Issues.Sarif) | Issue provider for reading SARIF reports. |
| [Cake.Issues.Terraform](https://www.nuget.org/packages/Cake.Issues.Terraform) | [Cake.Frosting.Issues.Terraform](https://www.nuget.org/packages/Cake.Frosting.Issues.Terraform) | Issue provider for reading Terraform validation output. |
Expand Down
59 changes: 59 additions & 0 deletions nuspec/nuget/Cake.Frosting.Issues.InspectCode.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Cake.Frosting.Issues.InspectCode</id>
<title>Cake.Frosting.Issues.InspectCode</title>
<version>0.0.0</version>
<authors>Cake Issues contributors</authors>
<owners>bbtsoftware, pascalberger, cake-contrib</owners>
<summary>JetBrains Inspect Code support for the Cake.Issues addin for Cake Frosting</summary>
<description>
The JetBrains Inspect Code support for the Cake.Issues addin for Cake allows you to read issues logged by JetBrains Inspect Code.

This addin provides the aliases for reading JetBrains Inspect Code issues and providing them to the Cake.Issues addin.
It also requires the core Cake.Issues addin.

There are also additional addins for generating reports or posting issues to pull requests.

See the Project Site for an overview of the whole ecosystem of addins for working with issues in Cake scripts.

NOTE:
This is the version of the addin compatible with Cake Frosting.
For addin compatible with Cake Script Runners see Cake.Issues.InspectCode.
</description>
<license type="expression">MIT</license>
<projectUrl>https://cakeissues.net</projectUrl>
<icon>icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.git"/>
<copyright>Copyright © Cake Issues contributors</copyright>
<tags>cake cake-addin cake-issues cake-issueprovider codeanalysis linting inspectcode</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/4.1.0</releaseNotes>
<dependencies>
<group targetFramework="net6.0">
<dependency id="Cake.Core" version="4.0" exclude="Build,Analyzers" />
<dependency id="Cake.Issues" version="[4.0.0-beta0001,5.0)" exclude="Build,Analyzers" />
</group>
<group targetFramework="net7.0">
<dependency id="Cake.Core" version="4.0" exclude="Build,Analyzers" />
<dependency id="Cake.Issues" version="[4.0.0-beta0001,5.0)" exclude="Build,Analyzers" />
</group>
<group targetFramework="net8.0">
<dependency id="Cake.Core" version="4.0" exclude="Build,Analyzers" />
<dependency id="Cake.Issues" version="[4.0.0-beta0001,5.0)" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
<files>
<file src="icon.png" target="" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net6.0\Cake.Issues.InspectCode.dll" target="lib\net6.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net6.0\Cake.Issues.InspectCode.pdb" target="lib\net6.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net6.0\Cake.Issues.InspectCode.xml" target="lib\net6.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net7.0\Cake.Issues.InspectCode.dll" target="lib\net7.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net7.0\Cake.Issues.InspectCode.pdb" target="lib\net7.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net7.0\Cake.Issues.InspectCode.xml" target="lib\net7.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net8.0\Cake.Issues.InspectCode.dll" target="lib\net8.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net8.0\Cake.Issues.InspectCode.pdb" target="lib\net8.0" />
<file src="..\..\src\Cake.Issues.InspectCode\bin\Release\net8.0\Cake.Issues.InspectCode.xml" target="lib\net8.0" />
</files>
</package>
4 changes: 4 additions & 0 deletions nuspec/nuget/Cake.Issues.InspectCode.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ It also requires the core Cake.Issues addin.
There are also additional addins for generating reports or posting issues to pull requests.

See the Project Site for an overview of the whole ecosystem of addins for working with issues in Cake scripts.

NOTE:
This is the version of the addin compatible with Cake Script Runners.
For addin compatible with Cake Frosting see Cake.Frosting.Issues.InspectCode.
</description>
<license type="expression">MIT</license>
<projectUrl>https://cakeissues.net</projectUrl>
Expand Down

0 comments on commit 3c1e197

Please sign in to comment.