Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency dotnet-sdk to v8.0.406 #560

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"allowPrerelease": true,
"version": "8.0.403",
"version": "8.0.406",
"rollForward": "latestFeature"
}
}

Unchanged files with check annotations Beta

<Project Sdk="Microsoft.NET.Sdk">

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (windows-2022)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (windows-2022)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (windows-2022)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (ubuntu-22.04)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (ubuntu-22.04)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (ubuntu-22.04)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (macos-13)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (macos-13)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)

Check warning on line 1 in src/Cake.ESLint/Cake.ESLint.csproj

GitHub Actions / build (macos-13)

Cake.Core is referenced in version 4.0.0. Recommended version is 5.0.0. (see https://***.github.io/CakeContrib.Guidelines/rules/ccg0009)
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
// ReSharper disable once ClassNeverInstantiated.Local
private class OutputFormatDataGenerator : IEnumerable<object[]>
{
private readonly List<object[]> data = new List<object[]>

Check warning on line 532 in src/Cake.ESLint.Tests/ESLintRunnerTests.cs

GitHub Actions / build (windows-2022)

Redundant type specification
{
new object[] {ESLintOutputFormat.Checkstyle, "checkstyle"},
new object[] {ESLintOutputFormat.Codeframe, "codeframe"},
/// <summary>
/// Gets the cache strategy "metadata".
/// </summary>
public static ESLintCacheStrategy Metadata { get; } = new ESLintCacheStrategy("metadata");

Check warning on line 40 in src/Cake.ESLint/ESLintCacheStrategy.cs

GitHub Actions / build (windows-2022)

Redundant type specification
/// <summary>
/// Gets the cache strategy "content".
/// </summary>
public static ESLintCacheStrategy Content { get; } = new ESLintCacheStrategy("content");

Check warning on line 45 in src/Cake.ESLint/ESLintCacheStrategy.cs

GitHub Actions / build (windows-2022)

Redundant type specification
/// <summary>
/// Gets the name of the cache strategy.
/// <summary>
/// Gets the fix-type: Problem.
/// </summary>
public static ESLintFixType Problem { get; } = new ESLintFixType("problem");

Check warning on line 40 in src/Cake.ESLint/ESLintFixType.cs

GitHub Actions / build (windows-2022)

Redundant type specification
/// <summary>
/// Gets the fix-type: Suggestion.
/// </summary>
public static ESLintFixType Suggestion { get; } = new ESLintFixType("suggestion");

Check warning on line 45 in src/Cake.ESLint/ESLintFixType.cs

GitHub Actions / build (windows-2022)

Redundant type specification
/// <summary>
/// Gets the fix-type: Layout.
/// </summary>
public static ESLintFixType Layout { get; } = new ESLintFixType("layout");

Check warning on line 50 in src/Cake.ESLint/ESLintFixType.cs

GitHub Actions / build (windows-2022)

Redundant type specification
/// <summary>
/// Gets the name of the problem.
/// <summary>
/// Gets the format: Checkstyle.
/// </summary>
public static ESLintOutputFormat Checkstyle { get; } = new ESLintOutputFormat("checkstyle");

Check warning on line 40 in src/Cake.ESLint/ESLintOutputFormat.cs

GitHub Actions / build (windows-2022)

Redundant type specification
/// <summary>
/// Gets the format: Codeframe.