Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
Bump Cake.Issues from 0.9.0-beta0002 to 0.9.0-beta0004 in /src (#121)
Browse files Browse the repository at this point in the history
* Bump Cake.Issues from 0.9.0-beta0002 to 0.9.0-beta0003 in /src

Bumps [Cake.Issues](https://github.com/cake-contrib/Cake.Issues) from 0.9.0-beta0002 to 0.9.0-beta0003.
- [Release notes](https://github.com/cake-contrib/Cake.Issues/releases)
- [Changelog](https://github.com/cake-contrib/Cake.Issues/blob/develop/GitReleaseManager.yaml)
- [Commits](https://github.com/cake-contrib/Cake.Issues/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Bump Cake.Issues.Testing from 0.9.0-beta0002 to 0.9.0-beta0003 in /src

Bumps [Cake.Issues.Testing](https://github.com/cake-contrib/Cake.Issues) from 0.9.0-beta0002 to 0.9.0-beta0003.
- [Release notes](https://github.com/cake-contrib/Cake.Issues/releases)
- [Changelog](https://github.com/cake-contrib/Cake.Issues/blob/develop/GitReleaseManager.yaml)
- [Commits](https://github.com/cake-contrib/Cake.Issues/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update code to Cake.Issues 0.9.0 Beta 3

* Update documentation for IIssues.FileLink

* Update to Cake.Issues 0.9.0 Beta 4

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Pascal Berger <pascal.berger@gmail.com>
  • Loading branch information
dependabot-preview[bot] and pascalberger authored Aug 1, 2020
1 parent c03bb9e commit 7b1d6b9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ The [Cake.Issues.Markdownlint addin] provides the following features.
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.EndLine` | |
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.Column` | |
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.EndColumn` | |
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.FileLink` | Can be set while reading issues |
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageText` | |
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.MessageHtml` | |
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.MessageMarkdown` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cake.Issues">
<Version>0.9.0-beta0002</Version>
<Version>0.9.0-beta0004</Version>
</PackageReference>
<PackageReference Include="Cake.Issues.Testing">
<Version>0.9.0-beta0002</Version>
<Version>0.9.0-beta0004</Version>
</PackageReference>
<PackageReference Include="Cake.Testing">
<Version>0.33.0</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ internal class MarkdownlintIssuesProviderFixture<T>
public MarkdownlintIssuesProviderFixture(string fileResourceName)
: base(fileResourceName)
{
this.RepositorySettings =
new RepositorySettings(@"c:\Source\Cake.Issues");
this.ReadIssuesSettings =
new ReadIssuesSettings(@"c:\Source\Cake.Issues");
}

protected override string FileResourceNamespace => "Cake.Issues.Markdownlint.Tests.Testfiles." + typeof(T).Name + ".";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<Version>0.33.0</Version>
</PackageReference>
<PackageReference Include="Cake.Issues">
<Version>0.9.0-beta0002</Version>
<Version>0.9.0-beta0004</Version>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
<Version>3.0.0</Version>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Issues.Markdownlint/MarkdownlintIssuesProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public MarkdownlintIssuesProvider(ICakeLog log, MarkdownlintIssuesSettings setti
/// This name can be used to identify issues based on the <see cref="IIssue.ProviderType"/> property.
/// </summary>
public static string ProviderTypeName => typeof(MarkdownlintIssuesProvider).FullName;

/// <inheritdoc />
public override string ProviderName => "markdownlint";
}
Expand Down

0 comments on commit 7b1d6b9

Please sign in to comment.