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

chore(deps): update dependency fluentassertions to v8 #1430

Closed
wants to merge 1 commit into from
Closed
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 Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.1" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="FluentAssertions" Version="7.1.0" />
<PackageVersion Include="FluentAssertions" Version="8.0.1" />
<PackageVersion Include="Verify.Xunit" Version="28.0.0" />
<PackageVersion Include="Verify.SourceGenerators" Version="2.4.3" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />

Unchanged files with check annotations Beta

namespace Build;
[TypeConverter(typeof(TypeConverter<Configuration>))]
public class Configuration : Enumeration

Check warning on line 7 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

The type name Configuration conflicts in whole or in part with the namespace name 'System.Configuration' defined in the .NET Framework. Rename the type to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 7 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

The type name Configuration conflicts in whole or in part with the namespace name 'System.Configuration' defined in the .NET Framework. Rename the type to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 7 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

The type name Configuration conflicts in whole or in part with the namespace name 'System.Configuration' defined in the .NET Framework. Rename the type to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 7 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

The type name Configuration conflicts in whole or in part with the namespace name 'System.Configuration' defined in the .NET Framework. Rename the type to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 7 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

The type name Configuration conflicts in whole or in part with the namespace name 'System.Configuration' defined in the .NET Framework. Rename the type to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 7 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

The type name Configuration conflicts in whole or in part with the namespace name 'System.Configuration' defined in the .NET Framework. Rename the type to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)
{
public static Configuration Debug = new() { Value = nameof(Debug) };

Check warning on line 9 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 9 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 9 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 9 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 9 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 9 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)
public static Configuration Release = new() { Value = nameof(Release) };

Check warning on line 10 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 10 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 10 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 10 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 10 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)

Check warning on line 10 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

Non-constant fields should not be visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2211)
public static implicit operator string(Configuration configuration) => configuration.Value;

Check warning on line 12 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

Provide a method named 'ToString' or 'FromConfiguration' as an alternate for operator op_Implicit (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2225)

Check warning on line 12 in .build/Configuration.cs

GitHub Actions / build (macos-latest)

Provide a method named 'ToString' or 'FromConfiguration' as an alternate for operator op_Implicit (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2225)

Check warning on line 12 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

Provide a method named 'ToString' or 'FromConfiguration' as an alternate for operator op_Implicit (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2225)

Check warning on line 12 in .build/Configuration.cs

GitHub Actions / build (windows-latest)

Provide a method named 'ToString' or 'FromConfiguration' as an alternate for operator op_Implicit (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2225)

Check warning on line 12 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

Provide a method named 'ToString' or 'FromConfiguration' as an alternate for operator op_Implicit (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2225)

Check warning on line 12 in .build/Configuration.cs

GitHub Actions / build (ubuntu-latest)

Provide a method named 'ToString' or 'FromConfiguration' as an alternate for operator op_Implicit (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2225)
}
public Target Test => _ => _.Inherit<ICanTestWithDotNetCore>(x => x.CoreTest);
public Target NpmInstall => _ => _

Check warning on line 66 in .build/Build.cs

GitHub Actions / build (macos-latest)

Member 'NpmInstall' does not access instance data and can be marked as static (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1822)

Check warning on line 66 in .build/Build.cs

GitHub Actions / build (macos-latest)

Member 'NpmInstall' does not access instance data and can be marked as static (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1822)

Check warning on line 66 in .build/Build.cs

GitHub Actions / build (windows-latest)

Member 'NpmInstall' does not access instance data and can be marked as static (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1822)

Check warning on line 66 in .build/Build.cs

GitHub Actions / build (windows-latest)

Member 'NpmInstall' does not access instance data and can be marked as static (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1822)

Check warning on line 66 in .build/Build.cs

GitHub Actions / build (ubuntu-latest)

Member 'NpmInstall' does not access instance data and can be marked as static (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1822)

Check warning on line 66 in .build/Build.cs

GitHub Actions / build (ubuntu-latest)

Member 'NpmInstall' does not access instance data and can be marked as static (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1822)
.Executes(() =>
NpmTasks.NpmCi(s => s
.SetProcessWorkingDirectory(VscodeTestExtensionProjectDirectory)));
namespace Build;
internal class LocalConstants

Check warning on line 9 in .build/Solution.cs

GitHub Actions / build (macos-latest)

Type 'LocalConstants' can be sealed because it has no subtypes in its containing assembly and is not externally visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1852)

Check warning on line 9 in .build/Solution.cs

GitHub Actions / build (macos-latest)

Type 'LocalConstants' can be sealed because it has no subtypes in its containing assembly and is not externally visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1852)

Check warning on line 9 in .build/Solution.cs

GitHub Actions / build (windows-latest)

Type 'LocalConstants' can be sealed because it has no subtypes in its containing assembly and is not externally visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1852)

Check warning on line 9 in .build/Solution.cs

GitHub Actions / build (windows-latest)

Type 'LocalConstants' can be sealed because it has no subtypes in its containing assembly and is not externally visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1852)

Check warning on line 9 in .build/Solution.cs

GitHub Actions / build (ubuntu-latest)

Type 'LocalConstants' can be sealed because it has no subtypes in its containing assembly and is not externally visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1852)

Check warning on line 9 in .build/Solution.cs

GitHub Actions / build (ubuntu-latest)

Type 'LocalConstants' can be sealed because it has no subtypes in its containing assembly and is not externally visible (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1852)
{
public static string[] PathsIgnore => new[]
{
}
}
public static class Extensions

Check warning on line 114 in .build/Solution.cs

GitHub Actions / build (macos-latest)

The type name Extensions conflicts in whole or in part with the namespace name 'Azure.Core.Extensions'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 114 in .build/Solution.cs

GitHub Actions / build (macos-latest)

The type name Extensions conflicts in whole or in part with the namespace name 'Azure.Core.Extensions'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 114 in .build/Solution.cs

GitHub Actions / build (windows-latest)

The type name Extensions conflicts in whole or in part with the namespace name 'Azure.Core.Extensions'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 114 in .build/Solution.cs

GitHub Actions / build (windows-latest)

The type name Extensions conflicts in whole or in part with the namespace name 'Azure.Core.Extensions'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 114 in .build/Solution.cs

GitHub Actions / build (ubuntu-latest)

The type name Extensions conflicts in whole or in part with the namespace name 'Azure.Core.Extensions'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)

Check warning on line 114 in .build/Solution.cs

GitHub Actions / build (ubuntu-latest)

The type name Extensions conflicts in whole or in part with the namespace name 'Azure.Core.Extensions'. Change either name to eliminate the conflict. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1724)
{
public static RocketSurgeonsGithubActionsJob AddVscodeExtensionTests(this RocketSurgeonsGithubActionsJob job)
{