Skip to content

chore(deps): update dependency windows to v2025 #95

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

Open
wants to merge 1 commit into
base: main
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 .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ env:

jobs:
build:
runs-on: windows-2022
runs-on: windows-2025
outputs:
nbgv: ${{ steps.nbgv.outputs.SemVer2 }}
steps:
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ env:

jobs:
release:
runs-on: windows-2022
runs-on: windows-2025
environment:
name: release
outputs:

Unchanged files with check annotations Beta

subj.OnNext(Unit.Default);
// Wait 10 ms to allow execution to complete
await Task.Delay(10).ConfigureAwait(false);

Check warning on line 1276 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)

Check warning on line 1276 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)
isExecuting.Should().BeFalse();
fail?.Message.Should().NotBeNull().And.Subject.Should().Be("break execution");
result = -1;
}
await Task.Delay(200).ConfigureAwait(false);

Check warning on line 1306 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)

Check warning on line 1306 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)
result.Should().Be(1);
}
var command = RxCommand.Create(() => new object());
var waiter = WaitForValueAsync();
command.Dispose();
Assert.Null(await waiter.ConfigureAwait(false));

Check warning on line 1320 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)

Check warning on line 1320 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)
async Task<object?> WaitForValueAsync() => await command.FirstOrDefaultAsync();
}
Assert.Equal("RxCommand", executeStringRecieved);
Assert.Equal("RxCommand", stringRecieved);
disposables.Dispose();
Assert.Equal("RxCommand", await waiter.ConfigureAwait(false));

Check warning on line 1353 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)

Check warning on line 1353 in src/ReactiveMarbles.Command.Tests/RxCommandTests.cs

GitHub Actions / build

Test methods should not call ConfigureAwait(false), as it may bypass parallelization limits. Omit ConfigureAwait, or use ConfigureAwait(true) to avoid CA2007. (https://xunit.net/xunit.analyzers/rules/xUnit1030)
async Task<string?> WaitForValueAsync() => await command.FirstOrDefaultAsync();
}