Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .idea/.idea.aweXpect/.idea/copilot.data.migration.agent.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.aweXpect/.idea/copilot.data.migration.ask.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.aweXpect/.idea/copilot.data.migration.edit.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Pipeline/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ partial class Build : NukeBuild
/// <para />
/// Afterward, you can update the package reference in `Directory.Packages.props` and reset this flag.
/// </summary>
readonly BuildScope BuildScope = BuildScope.Default;
readonly BuildScope BuildScope = BuildScope.CoreOnly;

[Parameter("Github Token")] readonly string GithubToken;
[GitRepository] readonly GitRepository Repository;
Expand Down
2 changes: 1 addition & 1 deletion Source/aweXpect.Core/Core/Polyfills/Index.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace System;
/// </code>
/// </remarks>
[ExcludeFromCodeCoverage]
public readonly struct Index : IEquatable<Index>
internal readonly struct Index : IEquatable<Index>
{
private readonly int _value;

Expand Down
2 changes: 1 addition & 1 deletion Source/aweXpect.Core/Core/Polyfills/Range.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace System;
/// </code>
/// </remarks>
[ExcludeFromCodeCoverage]
public readonly struct Range : IEquatable<Range>
internal readonly struct Range : IEquatable<Range>
{
/// <summary>Represent the inclusive start index of the Range.</summary>
public Index Start { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ namespace System.Diagnostics;
AttributeTargets.Struct,
Inherited = false)]
[ExcludeFromCodeCoverage]
public sealed class StackTraceHiddenAttribute : Attribute;
internal sealed class StackTraceHiddenAttribute : Attribute;
#endif
Loading
Loading