Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Oct 23, 2019
2 parents 69a8dfb + b1ba816 commit bacdd7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2017
image: Visual Studio 2019

#---------------------------------#
# Build Script #
Expand Down
2 changes: 1 addition & 1 deletion nuspec/nuget/Cake.Issues.GitRepository.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.GitRepository.git"/>
<copyright>Copyright © Pascal Berger</copyright>
<tags>Cake Script Cake-Issues Cake-IssueProvider CodeAnalysis Linting Git</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.8.0</releaseNotes>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.8.1</releaseNotes>
</metadata>
<files>
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />
Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Issues.GitRepository/GitRepositoryIssuesProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private IEnumerable<IIssue> CheckForBinaryFilesNotTrackedByLfs()
result.Add(
IssueBuilder
.NewIssue($"The binary file \"{file}\" is not tracked by Git LFS", this)
.WithMessageInHtmlFormat($"The binary file <pre>{file}</pre> is not tracked by Git LFS")
.WithMessageInHtmlFormat($"The binary file <code>{file}</code> is not tracked by Git LFS")
.WithMessageInMarkdownFormat($"The binary file `{file}` is not tracked by Git LFS")
.InFile(file)
.OfRule(ruleDescription)
Expand Down Expand Up @@ -150,7 +150,7 @@ private IEnumerable<IIssue> CheckForFilesPathLength()
result.Add(
IssueBuilder
.NewIssue($"The path for the file \"{file}\" is too long. Maximum allowed path length is {this.IssueProviderSettings.MaxFilePathLength}, actual path length is {file.Length}.", this)
.WithMessageInHtmlFormat($"The path for the file <pre>{file}</pre> is too long. Maximum allowed path length is {this.IssueProviderSettings.MaxFilePathLength}, actual path length is {file.Length}.")
.WithMessageInHtmlFormat($"The path for the file <code>{file}</code> is too long. Maximum allowed path length is {this.IssueProviderSettings.MaxFilePathLength}, actual path length is {file.Length}.")
.WithMessageInMarkdownFormat($"The path for the file `{file}` is too long. Maximum allowed path length is {this.IssueProviderSettings.MaxFilePathLength}, actual path length is {file.Length}.")
.InFile(file)
.OfRule(ruleDescription)
Expand Down

0 comments on commit bacdd7d

Please sign in to comment.