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

Commit 0964b77

Browse files
committed
Merge branch 'release/0.7.3'
2 parents b359506 + 70f29ba commit 0964b77

File tree

14 files changed

+173
-22
lines changed

14 files changed

+173
-22
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ branches:
2727
# Build Cache #
2828
#---------------------------------#
2929
cache:
30-
- tools -> setup.cake
30+
- tools -> recipe.cake

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Project specific
1+
# Project specific
22

33
BuildArtifacts/
44
tests/integration/tools/*
@@ -233,7 +233,7 @@ ClientBin/
233233
*.publishsettings
234234
orleans.codegen.cs
235235

236-
# Including strong name files can present a security risk
236+
# Including strong name files can present a security risk
237237
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
238238
#*.snk
239239

@@ -329,7 +329,7 @@ __pycache__/
329329
# OpenCover UI analysis results
330330
OpenCover/
331331

332-
# Azure Stream Analytics local run output
332+
# Azure Stream Analytics local run output
333333
ASALocalRun/
334334

335335
# MSBuild Binary and Structured Log
@@ -338,7 +338,9 @@ ASALocalRun/
338338
# NVidia Nsight GPU debugger configuration file
339339
*.nvuser
340340

341-
# MFractors (Xamarin productivity tool) working folder
341+
# MFractors (Xamarin productivity tool) working folder
342342
.mfractor/
343343

344344
# End of https://www.gitignore.io/api/cake,visualstudio
345+
346+
.dotnet

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This addin for the Cake Build Automation System allows you to analyze Git reposi
44
using the [Cake Issues addin](https://github.com/cake-contrib/Cake.Issues).
55

66
For more information about this add-in see the [Cake.Issues website](https://cakeissues.net)
7-
and for general information about the Cake build automation system see the [Cake website](http://cakebuild.net)
7+
and for general information about the Cake build automation system see the [Cake website](http://cakebuild.net).
88

99
[![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/cake-contrib/Cake.Issues.GitRepository/blob/feature/build/LICENSE)
1010

@@ -34,7 +34,7 @@ and for general information about the Cake build automation system see the [Cake
3434

3535
## Chat Room
3636

37-
Come join in the conversation about this addin in our Gitter Chat Room
37+
Come join in the conversation about this addin in our Gitter Chat Room.
3838

3939
[![Join the chat at https://gitter.im/cake-contrib/Lobby](https://badges.gitter.im/cake-contrib/Lobby.svg)](https://gitter.im/cake-contrib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4040

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ http://cakebuild.net
3535

3636
[CmdletBinding()]
3737
Param(
38-
[string]$Script = "setup.cake",
38+
[string]$Script = "recipe.cake",
3939
[string]$Target = "Default",
4040
[ValidateSet("Release", "Debug")]
4141
[string]$Configuration = "Release",
@@ -181,4 +181,4 @@ if (!(Test-Path $CAKE_EXE)) {
181181
# Start Cake
182182
Write-Host "Running build script..."
183183
Invoke-Expression "& `"$CAKE_EXE`" `"$Script`" -target=`"$Target`" -configuration=`"$Configuration`" -verbosity=`"$Verbosity`" $UseMono $UseDryRun $UseExperimental $ScriptArgs"
184-
exit $LASTEXITCODE
184+
exit $LASTEXITCODE

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ fi
9999
###########################################################################
100100

101101
# Start Cake
102-
exec mono "$CAKE_EXE" setup.cake --verbosity=$VERBOSITY --configuration=$CONFIGURATION --target=$TARGET $DRYRUN "${SCRIPT_ARGUMENTS[@]}"
102+
exec mono "$CAKE_EXE" recipe.cake --verbosity=$VERBOSITY --configuration=$CONFIGURATION --target=$TARGET $DRYRUN "${SCRIPT_ARGUMENTS[@]}"

docs/rules/FilePathTooLong.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
Title: FilePathTooLong
3+
Description: The path of a file is too long.
4+
---
5+
6+
<?# Table Class=table HeaderRows=0 ?>
7+
<?*
8+
"Rule Id" FilePathTooLong
9+
Priority Warning
10+
?>
11+
<?#/ Table ?>
12+
13+
## Cause
14+
15+
The path of a file in the repository is too long.
16+
17+
## Rule description
18+
19+
Some operating systems and applications have a limitation of maximum path length which they can handle.
20+
To guarantee proper building this length should not be exceeded.
21+
22+
## How to fix violations
23+
24+
Rename the name of the file or shorten the path name.

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.7.2</releaseNotes>
27+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.7.3</releaseNotes>
2828
</metadata>
2929
<files>
3030
<file src="netstandard2.0/Cake.Issues.GitRepository.dll" target="lib\netstandard2.0" />
File renamed without changes.

src/Cake.Issues.GitRepository.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cake.Issues.GitRepository.T
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{44A982C3-1A02-497A-96B0-238D1F181BD5}"
1111
ProjectSection(SolutionItems) = preProject
12-
..\setup.cake = ..\setup.cake
12+
..\recipe.cake = ..\recipe.cake
1313
EndProjectSection
1414
EndProject
1515
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuspec", "nuspec", "{8419B5EA-AC0C-41FD-AFB3-28FAE7B63CB1}"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<Version>0.7.0</Version>
3434
</PackageReference>
3535
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
36-
<Version>2.9.4</Version>
36+
<Version>2.9.6</Version>
3737
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3838
<PrivateAssets>all</PrivateAssets>
3939
</PackageReference>

0 commit comments

Comments
 (0)