Skip to content

Develop#75

Merged
Chris-Wolfgang merged 7 commits intomainfrom
develop
Mar 12, 2026
Merged

Develop#75
Chris-Wolfgang merged 7 commits intomainfrom
develop

Conversation

@Chris-Wolfgang
Copy link
Copy Markdown
Owner

Description

  • Removed netstandard20 and netstandard2.1 because .net framework 4.6.2 - 4.8.1, net core 3.1, and .net 5-10 are already in the build.

  • Excluded skipped tests from code coverage until can get them fixed

Type of change

Please delete options that are not relevant.

  • Bug fix
  • New feature
  • Breaking change
  • Documentation update
  • Refactor

Added new (skipped) unit tests for progress callbacks in ExtractorBaseTests, LoaderBaseTests, and TransformerBaseTests, including scenarios with cancellation tokens. Replaced two TransformerBaseTests with similar skipped versions. Made minor formatting adjustments to the project file without changing metadata.
@Chris-Wolfgang Chris-Wolfgang marked this pull request as ready for review March 12, 2026 01:51
Copilot AI review requested due to automatic review settings March 12, 2026 01:51
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR is primarily a formatting/cleanup pass across the repo (removing BOMs, normalizing whitespace), with two functional/meta changes: excluding several skipped/flaky progress-callback tests from code coverage and updating the Wolfgang.Etl.Abstractions package target frameworks (dropping netstandard2.0/netstandard2.1).

Changes:

  • Add [ExcludeFromCodeCoverage] to several skipped “timing issues” unit tests around progress callbacks.
  • Remove netstandard2.0 and netstandard2.1 from Wolfgang.Etl.Abstractions multi-targeting.
  • Normalize whitespace/BOM and minor formatting in interfaces and example apps.

Reviewed changes

Copilot reviewed 80 out of 93 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
tests/Wolfgang.Etl.Abstractions.Tests.Unit/BaseClassTests/TransformerBaseTests.cs Exclude skipped/flaky progress-related tests from coverage.
tests/Wolfgang.Etl.Abstractions.Tests.Unit/BaseClassTests/LoaderBaseTests.cs Exclude skipped/flaky progress-related tests from coverage.
tests/Wolfgang.Etl.Abstractions.Tests.Unit/BaseClassTests/ExtractorBaseTests.cs Exclude skipped/flaky progress-related tests from coverage.
src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj Remove netstandard2.0/netstandard2.1 from target frameworks; minor formatting.
src/Wolfgang.Etl.Abstractions/ITransformWithProgressAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ITransformWithProgressAndCancellationAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ITransformWithCancellationAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ITransformAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ILoadWithProgressAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ILoadWithProgressAndCancellationAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ILoadWithCancellationAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/ILoadAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/IExtractWithProgressAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/IExtractWithProgressAndCancellationAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/IExtractWithCancellationAsync.cs BOM/whitespace normalization.
src/Wolfgang.Etl.Abstractions/IExtractAsync.cs BOM/whitespace normalization.
examples/Net8.0/Example6-ReducingDuplicateCode/Program.cs BOM/whitespace normalization.
examples/Net8.0/Example6-ReducingDuplicateCode/EtlProgress.cs Minor formatting (blank line).
examples/Net8.0/Example6-ReducingDuplicateCode/ETL/IntToStringTransformer.cs BOM/whitespace normalization.
examples/Net8.0/Example6-ReducingDuplicateCode/ETL/FibonacciExtractor.cs BOM/whitespace normalization.
examples/Net8.0/Example6-ReducingDuplicateCode/ETL/ConsoleLoader.cs BOM/whitespace normalization.
examples/Net8.0/Example6-ReducingDuplicateCode/ConsoleColors.cs Minor formatting (blank line).
examples/Net8.0/Example5a-ExtractorWithProgressAndCancellation/Program.cs Minor formatting (blank line).
examples/Net8.0/Example5a-ExtractorWithProgressAndCancellation/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net8.0/Example5a-ExtractorWithProgressAndCancellation/ETL/FibonacciExtractor.cs Whitespace normalization.
examples/Net8.0/Example5a-ExtractorWithProgressAndCancellation/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net8.0/Example4c-WithLoaderProgress/Program.cs Minor formatting (blank line).
examples/Net8.0/Example4c-WithLoaderProgress/ETL/IntToStringTransformer.cs BOM/whitespace normalization.
examples/Net8.0/Example4c-WithLoaderProgress/ETL/FibonacciExtractor.cs BOM/whitespace normalization.
examples/Net8.0/Example4c-WithLoaderProgress/ETL/ConsoleLoader.cs BOM/whitespace normalization.
examples/Net8.0/Example4b-WithTransformerProgress/Program.cs Minor formatting (blank line).
examples/Net8.0/Example4b-WithTransformerProgress/ETL/IntToStringTransformer.cs BOM/whitespace normalization.
examples/Net8.0/Example4b-WithTransformerProgress/ETL/FibonacciExtractor.cs BOM/whitespace normalization.
examples/Net8.0/Example4b-WithTransformerProgress/ETL/ConsoleLoader.cs BOM/whitespace normalization.
examples/Net8.0/Example4a-WithExtractorProgress/Program.cs Minor formatting (blank line).
examples/Net8.0/Example4a-WithExtractorProgress/ETL/IntToStringTransformer.cs BOM/whitespace normalization.
examples/Net8.0/Example4a-WithExtractorProgress/ETL/FibonacciExtractor.cs BOM/whitespace normalization.
examples/Net8.0/Example4a-WithExtractorProgress/ETL/ConsoleLoader.cs BOM/whitespace normalization.
examples/Net8.0/Example3-WithGracefulCancellation/Program.cs Minor formatting (blank line).
examples/Net8.0/Example3-WithGracefulCancellation/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net8.0/Example3-WithGracefulCancellation/ETL/FibonacciExtractor.cs Minor formatting (blank line).
examples/Net8.0/Example3-WithGracefulCancellation/ETL/ConsoleLoader.cs Minor formatting (blank line).
examples/Net8.0/Example2-WithCancellationToken/Program.cs Minor formatting (blank line).
examples/Net8.0/Example2-WithCancellationToken/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net8.0/Example2-WithCancellationToken/ETL/FibonacciExtractor.cs Minor formatting (blank line).
examples/Net8.0/Example2-WithCancellationToken/ETL/ConsoleLoader.cs Minor formatting (blank line).
examples/Net8.0/Example1-BasicETL/Program.cs Whitespace normalization.
examples/Net8.0/Example1-BasicETL/ETL/IntToStringTransformer.cs BOM/whitespace normalization.
examples/Net8.0/Example1-BasicETL/ETL/FibonacciExtractor.cs BOM/whitespace normalization.
examples/Net8.0/Example1-BasicETL/ETL/ConsoleLoader.cs BOM/whitespace normalization.
examples/Net4.8/Example6-ReducingDuplicateCode/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example6-ReducingDuplicateCode/Program.cs BOM/whitespace normalization.
examples/Net4.8/Example6-ReducingDuplicateCode/ETL/IntToStringTransformer.cs BOM/whitespace normalization.
examples/Net4.8/Example6-ReducingDuplicateCode/ETL/FibonacciExtractor.cs BOM/whitespace normalization.
examples/Net4.8/Example6-ReducingDuplicateCode/ETL/ConsoleLoader.cs BOM/whitespace normalization.
examples/Net4.8/Example6-ReducingDuplicateCode/ConsoleColors.cs Whitespace normalization.
examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/Program.cs BOM/whitespace normalization.
examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/ETL/FibonacciExtractor.cs Whitespace normalization.
examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/ConsoleColors.cs Whitespace normalization.
examples/Net4.8/Example4c-WithLoaderProgress/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example4c-WithLoaderProgress/Program.cs BOM/whitespace normalization.
examples/Net4.8/Example4c-WithLoaderProgress/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example4c-WithLoaderProgress/ETL/FibonacciExtractor.cs Whitespace normalization.
examples/Net4.8/Example4c-WithLoaderProgress/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net4.8/Example4c-WithLoaderProgress/ConsoleColors.cs Whitespace normalization.
examples/Net4.8/Example4b-WithTransformerProgress/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example4b-WithTransformerProgress/Program.cs BOM/whitespace normalization.
examples/Net4.8/Example4b-WithTransformerProgress/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example4b-WithTransformerProgress/ETL/FibonacciExtractor.cs Whitespace normalization.
examples/Net4.8/Example4b-WithTransformerProgress/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net4.8/Example4b-WithTransformerProgress/ConsoleColors.cs Whitespace normalization.
examples/Net4.8/Example4a-WithExtractorProgress/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example4a-WithExtractorProgress/Program.cs BOM/whitespace normalization.
examples/Net4.8/Example4a-WithExtractorProgress/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example4a-WithExtractorProgress/ETL/FibonacciExtractor.cs Whitespace normalization.
examples/Net4.8/Example4a-WithExtractorProgress/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net4.8/Example4a-WithExtractorProgress/ConsoleColors.cs Whitespace normalization.
examples/Net4.8/Example3-WithGracefulCancellation/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example3-WithGracefulCancellation/Program.cs Whitespace normalization.
examples/Net4.8/Example3-WithGracefulCancellation/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example3-WithGracefulCancellation/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net4.8/Example3-WithGracefulCancellation/ConsoleColors.cs BOM/whitespace normalization.
examples/Net4.8/Example2-WithCancellationToken/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example2-WithCancellationToken/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example2-WithCancellationToken/ETL/ConsoleLoader.cs Whitespace normalization.
examples/Net4.8/Example2-WithCancellationToken/ConsoleColors.cs BOM/whitespace normalization.
examples/Net4.8/Example1-BasicETL/Properties/AssemblyInfo.cs BOM removal.
examples/Net4.8/Example1-BasicETL/Program.cs Whitespace normalization.
examples/Net4.8/Example1-BasicETL/ETL/IntToStringTransformer.cs Whitespace normalization.
examples/Net4.8/Example1-BasicETL/ETL/ConsoleLoader.cs Whitespace normalization.

You can also share your feedback on Copilot code review. Take the survey.

Comment thread src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj
@Chris-Wolfgang Chris-Wolfgang merged commit 77c92ef into main Mar 12, 2026
8 checks passed
@Chris-Wolfgang Chris-Wolfgang deleted the develop branch March 12, 2026 20:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants