Skip to content

Commit

Permalink
Merge pull request cake-contrib#118 from pascalberger/feature/cake-co…
Browse files Browse the repository at this point in the history
…ntribgh-117

(cake-contribGH-117) Update to Cake.Issues 0.9.0 Beta 2
  • Loading branch information
pascalberger authored Jul 12, 2020
2 parents 93b4a1f + 1aea168 commit 542af6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Cake.Issues.EsLint.Tests/Cake.Issues.EsLint.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Cake.Core" Version="0.33.0" />
<PackageReference Include="Cake.Testing" Version="0.33.0" />
<PackageReference Include="Cake.Issues" Version="0.8.0" />
<PackageReference Include="Cake.Issues.Testing" Version="0.8.0" />
<PackageReference Include="Cake.Issues" Version="0.9.0-beta0002" />
<PackageReference Include="Cake.Issues.Testing" Version="0.9.0-beta0002" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Issues.EsLint/Cake.Issues.EsLint.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.33.0" PrivateAssets="All" />
<PackageReference Include="Cake.Issues" Version="0.8.0" />
<PackageReference Include="Cake.Issues" Version="0.9.0-beta0002" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
Expand Down
4 changes: 2 additions & 2 deletions src/Cake.Issues.EsLint/LogFileFormat/JsonLogFileFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public JsonLogFileFormat(ICakeLog log)
/// <inheritdoc />
public override IEnumerable<IIssue> ReadIssues(
EsLintIssuesProvider issueProvider,
RepositorySettings repositorySettings,
IRepositorySettings repositorySettings,
EsLintIssuesSettings esLintsettings)
{
issueProvider.NotNull(nameof(issueProvider));
Expand Down Expand Up @@ -58,7 +58,7 @@ from message in file.messages

private static string GetRelativeFilePath(
string absoluteFilePath,
RepositorySettings repositorySettings)
IRepositorySettings repositorySettings)
{
// Make path relative to repository root.
var relativeFilePath = absoluteFilePath.Substring(repositorySettings.RepositoryRoot.FullPath.Length);
Expand Down

0 comments on commit 542af6f

Please sign in to comment.