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

Commit bacdd7d

Browse files
committed
Merge branch 'release/0.8.1'
2 parents 69a8dfb + b1ba816 commit bacdd7d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#---------------------------------#
22
# Build Image #
33
#---------------------------------#
4-
image: Visual Studio 2017
4+
image: Visual Studio 2019
55

66
#---------------------------------#
77
# Build Script #

nuspec/nuget/Cake.Issues.GitRepository.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
2424
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.GitRepository.git"/>
2525
<copyright>Copyright © Pascal Berger</copyright>
2626
<tags>Cake Script Cake-Issues Cake-IssueProvider CodeAnalysis Linting Git</tags>
27-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.8.0</releaseNotes>
27+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.8.1</releaseNotes>
2828
</metadata>
2929
<files>
3030
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />

src/Cake.Issues.GitRepository/GitRepositoryIssuesProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ private IEnumerable<IIssue> CheckForBinaryFilesNotTrackedByLfs()
119119
result.Add(
120120
IssueBuilder
121121
.NewIssue($"The binary file \"{file}\" is not tracked by Git LFS", this)
122-
.WithMessageInHtmlFormat($"The binary file <pre>{file}</pre> is not tracked by Git LFS")
122+
.WithMessageInHtmlFormat($"The binary file <code>{file}</code> is not tracked by Git LFS")
123123
.WithMessageInMarkdownFormat($"The binary file `{file}` is not tracked by Git LFS")
124124
.InFile(file)
125125
.OfRule(ruleDescription)
@@ -150,7 +150,7 @@ private IEnumerable<IIssue> CheckForFilesPathLength()
150150
result.Add(
151151
IssueBuilder
152152
.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)
153-
.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}.")
153+
.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}.")
154154
.WithMessageInMarkdownFormat($"The path for the file `{file}` is too long. Maximum allowed path length is {this.IssueProviderSettings.MaxFilePathLength}, actual path length is {file.Length}.")
155155
.InFile(file)
156156
.OfRule(ruleDescription)

0 commit comments

Comments
 (0)