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

Commit 3d83e6f

Browse files
committed
Merge branch 'release/0.9.0'
2 parents d160c1c + b2cb797 commit 3d83e6f

File tree

4 files changed

+28
-22
lines changed

4 files changed

+28
-22
lines changed

docs/features.md

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,27 @@ The [Cake.Issues.GitRepository addin] provides the following features.
1212

1313
# Supported IIssue properties
1414

15-
| | Property | Remarks |
16-
|--------------------------------------------------------------------|-----------------------------------|--------------------------------|
17-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.ProviderType` | |
18-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.ProviderName` | |
19-
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.ProjectName` | |
20-
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.ProjectFileRelativePath` | |
21-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.AffectedFileRelativePath` | |
22-
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.Line` | |
23-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageText` | |
24-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageHtml` | |
25-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageMarkdown` | |
26-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.Priority` | |
27-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.PriorityName` | |
28-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.Rule` | |
29-
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.RuleUrl` | |
15+
| | Property | Remarks |
16+
|--------------------------------------------------------------------|-----------------------------------|---------------------------------|
17+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.ProviderType` | |
18+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.ProviderName` | |
19+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.Run` | Can be set while reading issues |
20+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.Identifier` | Set to `IIssue.MessageText` |
21+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.ProjectName` | |
22+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.ProjectFileRelativePath` | |
23+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.AffectedFileRelativePath` | |
24+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.Line` | |
25+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.EndLine` | |
26+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.Column` | |
27+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.EndColumn` | |
28+
| <span class="glyphicon glyphicon-remove" style="color:red"></span> | `IIssue.FileLink` | Can be set while reading issues |
29+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageText` | |
30+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageHtml` | |
31+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.MessageMarkdown` | |
32+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.Priority` | |
33+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.PriorityName` | |
34+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.Rule` | |
35+
| <span class="glyphicon glyphicon-ok" style="color:green"></span> | `IIssue.RuleUrl` | |
3036

3137
[Cake.Issues.GitRepository addin]: https://www.nuget.org/packages/Cake.Issues.GitRepository
3238
[FilePathTooLong]: rules/FilePathTooLong

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.2</releaseNotes>
27+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.9.0</releaseNotes>
2828
</metadata>
2929
<files>
3030
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />

src/Cake.Issues.GitRepository.Tests/Cake.Issues.GitRepository.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
</ItemGroup>
2424
<ItemGroup>
2525
<PackageReference Include="Cake.Issues">
26-
<Version>0.8.0</Version>
26+
<Version>0.9.0</Version>
2727
</PackageReference>
2828
<PackageReference Include="Cake.Issues.Testing">
29-
<Version>0.8.0</Version>
29+
<Version>0.9.0</Version>
3030
</PackageReference>
3131
<PackageReference Include="Cake.Testing">
3232
<Version>0.33.0</Version>
@@ -48,4 +48,4 @@
4848
<PrivateAssets>all</PrivateAssets>
4949
</PackageReference>
5050
</ItemGroup>
51-
</Project>
51+
</Project>

src/Cake.Issues.GitRepository/Cake.Issues.GitRepository.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
<Version>0.33.0</Version>
3131
</PackageReference>
3232
<PackageReference Include="Cake.Issues">
33-
<Version>0.8.0</Version>
33+
<Version>0.9.0</Version>
3434
</PackageReference>
3535
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
36-
<Version>2.9.8</Version>
36+
<Version>3.0.0</Version>
3737
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3838
<PrivateAssets>all</PrivateAssets>
3939
</PackageReference>
@@ -43,4 +43,4 @@
4343
<PrivateAssets>all</PrivateAssets>
4444
</PackageReference>
4545
</ItemGroup>
46-
</Project>
46+
</Project>

0 commit comments

Comments
 (0)