From d0f2d5b08682fef6113b6084229e04c956086b11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 20:08:04 +0000 Subject: [PATCH 1/3] Bump Microsoft.Bcl.AsyncInterfaces from 10.0.2 to 10.0.3 --- updated-dependencies: - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.Bcl.AsyncInterfaces dependency-version: 10.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- examples/Net4.8/Example1-BasicETL/App.config | 10 +++++++++- .../Net4.8/Example1-BasicETL/Example1-BasicETL.csproj | 5 +++-- examples/Net4.8/Example1-BasicETL/packages.config | 2 +- .../Net4.8/Example2-WithCancellationToken/App.config | 10 +++++++++- .../Example2-WithCancellationToken.csproj | 5 +++-- .../Example2-WithCancellationToken/packages.config | 2 +- .../Example3-WithGracefulCancellation/App.config | 10 +++++++++- .../Example3-WithGracefulCancellation.csproj | 5 +++-- .../Example3-WithGracefulCancellation/packages.config | 2 +- .../Net4.8/Example4a-WithExtractorProgress/App.config | 10 +++++++++- .../Example4a-WithExtractorProgress.csproj | 5 +++-- .../Example4a-WithExtractorProgress/packages.config | 2 +- .../Example4b-WithTransformerProgress/App.config | 10 +++++++++- .../Example4b-WithTransformerProgress.csproj | 5 +++-- .../Example4b-WithTransformerProgress/packages.config | 2 +- .../Net4.8/Example4c-WithLoaderProgress/App.config | 10 +++++++++- .../Example4c-WithLoaderProgress.csproj | 5 +++-- .../Example4c-WithLoaderProgress/packages.config | 2 +- .../App.config | 10 +++++++++- ...ample5a-ExtractorWithProgressAndCancellation.csproj | 5 +++-- .../packages.config | 2 +- .../Net4.8/Example6-ReducingDuplicateCode/App.config | 10 +++++++++- .../Example6-ReducingDuplicateCode.csproj | 5 +++-- .../Example6-ReducingDuplicateCode/packages.config | 2 +- .../Wolfgang.Etl.Abstractions.csproj | 2 +- 25 files changed, 105 insertions(+), 33 deletions(-) diff --git a/examples/Net4.8/Example1-BasicETL/App.config b/examples/Net4.8/Example1-BasicETL/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example1-BasicETL/App.config +++ b/examples/Net4.8/Example1-BasicETL/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example1-BasicETL/Example1-BasicETL.csproj b/examples/Net4.8/Example1-BasicETL/Example1-BasicETL.csproj index 3d2700d..60609a2 100644 --- a/examples/Net4.8/Example1-BasicETL/Example1-BasicETL.csproj +++ b/examples/Net4.8/Example1-BasicETL/Example1-BasicETL.csproj @@ -34,8 +34,9 @@ 4 - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example1-BasicETL/packages.config b/examples/Net4.8/Example1-BasicETL/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example1-BasicETL/packages.config +++ b/examples/Net4.8/Example1-BasicETL/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/examples/Net4.8/Example2-WithCancellationToken/App.config b/examples/Net4.8/Example2-WithCancellationToken/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example2-WithCancellationToken/App.config +++ b/examples/Net4.8/Example2-WithCancellationToken/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example2-WithCancellationToken/Example2-WithCancellationToken.csproj b/examples/Net4.8/Example2-WithCancellationToken/Example2-WithCancellationToken.csproj index a0f4dd5..582a3a3 100644 --- a/examples/Net4.8/Example2-WithCancellationToken/Example2-WithCancellationToken.csproj +++ b/examples/Net4.8/Example2-WithCancellationToken/Example2-WithCancellationToken.csproj @@ -34,8 +34,9 @@ 4 - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example2-WithCancellationToken/packages.config b/examples/Net4.8/Example2-WithCancellationToken/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example2-WithCancellationToken/packages.config +++ b/examples/Net4.8/Example2-WithCancellationToken/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/examples/Net4.8/Example3-WithGracefulCancellation/App.config b/examples/Net4.8/Example3-WithGracefulCancellation/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example3-WithGracefulCancellation/App.config +++ b/examples/Net4.8/Example3-WithGracefulCancellation/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example3-WithGracefulCancellation/Example3-WithGracefulCancellation.csproj b/examples/Net4.8/Example3-WithGracefulCancellation/Example3-WithGracefulCancellation.csproj index 5643f67..f82f8f3 100644 --- a/examples/Net4.8/Example3-WithGracefulCancellation/Example3-WithGracefulCancellation.csproj +++ b/examples/Net4.8/Example3-WithGracefulCancellation/Example3-WithGracefulCancellation.csproj @@ -34,8 +34,9 @@ 4 - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example3-WithGracefulCancellation/packages.config b/examples/Net4.8/Example3-WithGracefulCancellation/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example3-WithGracefulCancellation/packages.config +++ b/examples/Net4.8/Example3-WithGracefulCancellation/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/examples/Net4.8/Example4a-WithExtractorProgress/App.config b/examples/Net4.8/Example4a-WithExtractorProgress/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example4a-WithExtractorProgress/App.config +++ b/examples/Net4.8/Example4a-WithExtractorProgress/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example4a-WithExtractorProgress/Example4a-WithExtractorProgress.csproj b/examples/Net4.8/Example4a-WithExtractorProgress/Example4a-WithExtractorProgress.csproj index d87ad91..2ac717e 100644 --- a/examples/Net4.8/Example4a-WithExtractorProgress/Example4a-WithExtractorProgress.csproj +++ b/examples/Net4.8/Example4a-WithExtractorProgress/Example4a-WithExtractorProgress.csproj @@ -35,8 +35,9 @@ latest - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example4a-WithExtractorProgress/packages.config b/examples/Net4.8/Example4a-WithExtractorProgress/packages.config index f065ed5..4d80a52 100644 --- a/examples/Net4.8/Example4a-WithExtractorProgress/packages.config +++ b/examples/Net4.8/Example4a-WithExtractorProgress/packages.config @@ -1,6 +1,6 @@  - + diff --git a/examples/Net4.8/Example4b-WithTransformerProgress/App.config b/examples/Net4.8/Example4b-WithTransformerProgress/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example4b-WithTransformerProgress/App.config +++ b/examples/Net4.8/Example4b-WithTransformerProgress/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example4b-WithTransformerProgress/Example4b-WithTransformerProgress.csproj b/examples/Net4.8/Example4b-WithTransformerProgress/Example4b-WithTransformerProgress.csproj index 7eca6d3..34778af 100644 --- a/examples/Net4.8/Example4b-WithTransformerProgress/Example4b-WithTransformerProgress.csproj +++ b/examples/Net4.8/Example4b-WithTransformerProgress/Example4b-WithTransformerProgress.csproj @@ -35,8 +35,9 @@ latest - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example4b-WithTransformerProgress/packages.config b/examples/Net4.8/Example4b-WithTransformerProgress/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example4b-WithTransformerProgress/packages.config +++ b/examples/Net4.8/Example4b-WithTransformerProgress/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/examples/Net4.8/Example4c-WithLoaderProgress/App.config b/examples/Net4.8/Example4c-WithLoaderProgress/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example4c-WithLoaderProgress/App.config +++ b/examples/Net4.8/Example4c-WithLoaderProgress/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example4c-WithLoaderProgress/Example4c-WithLoaderProgress.csproj b/examples/Net4.8/Example4c-WithLoaderProgress/Example4c-WithLoaderProgress.csproj index 06eaa54..671c7d1 100644 --- a/examples/Net4.8/Example4c-WithLoaderProgress/Example4c-WithLoaderProgress.csproj +++ b/examples/Net4.8/Example4c-WithLoaderProgress/Example4c-WithLoaderProgress.csproj @@ -35,8 +35,9 @@ latest - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example4c-WithLoaderProgress/packages.config b/examples/Net4.8/Example4c-WithLoaderProgress/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example4c-WithLoaderProgress/packages.config +++ b/examples/Net4.8/Example4c-WithLoaderProgress/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/App.config b/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/App.config +++ b/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/Example5a-ExtractorWithProgressAndCancellation.csproj b/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/Example5a-ExtractorWithProgressAndCancellation.csproj index b03bb8e..9469aad 100644 --- a/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/Example5a-ExtractorWithProgressAndCancellation.csproj +++ b/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/Example5a-ExtractorWithProgressAndCancellation.csproj @@ -35,8 +35,9 @@ latest - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/packages.config b/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/packages.config +++ b/examples/Net4.8/Example5a-ExtractorWithProgressAndCancellation/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/examples/Net4.8/Example6-ReducingDuplicateCode/App.config b/examples/Net4.8/Example6-ReducingDuplicateCode/App.config index 193aecc..c39f060 100644 --- a/examples/Net4.8/Example6-ReducingDuplicateCode/App.config +++ b/examples/Net4.8/Example6-ReducingDuplicateCode/App.config @@ -1,6 +1,14 @@ - + + + + + + + + + \ No newline at end of file diff --git a/examples/Net4.8/Example6-ReducingDuplicateCode/Example6-ReducingDuplicateCode.csproj b/examples/Net4.8/Example6-ReducingDuplicateCode/Example6-ReducingDuplicateCode.csproj index 810d7e9..efd098a 100644 --- a/examples/Net4.8/Example6-ReducingDuplicateCode/Example6-ReducingDuplicateCode.csproj +++ b/examples/Net4.8/Example6-ReducingDuplicateCode/Example6-ReducingDuplicateCode.csproj @@ -35,8 +35,9 @@ 12 - - ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.2\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + + ..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.10.0.3\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll + True diff --git a/examples/Net4.8/Example6-ReducingDuplicateCode/packages.config b/examples/Net4.8/Example6-ReducingDuplicateCode/packages.config index c6e55dc..8ec64a4 100644 --- a/examples/Net4.8/Example6-ReducingDuplicateCode/packages.config +++ b/examples/Net4.8/Example6-ReducingDuplicateCode/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj b/src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj index 08963ed..fd1b08e 100644 --- a/src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj +++ b/src/Wolfgang.Etl.Abstractions/Wolfgang.Etl.Abstractions.csproj @@ -43,7 +43,7 @@ - + From ab2b5942270df24c3dadaa8b360dda18dd09a801 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 23:33:42 +0000 Subject: [PATCH 2/3] Initial plan From ac8d1285788ddf00d0ef8613417c8b307ba6d713 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 23:35:11 +0000 Subject: [PATCH 3/3] Fix DevSkim workflow to save results to file Co-authored-by: Chris-Wolfgang <210299580+Chris-Wolfgang@users.noreply.github.com> --- .github/workflows/pr.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 79696f0..458a8c5 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -96,7 +96,7 @@ jobs: run: dotnet tool install --global Microsoft.CST.DevSkim.CLI - name: Run DevSkim Security Scan (Save output) - run: devskim analyze --source-code . --file-format text -E --ignore-rule-ids DS176209 --ignore-globs "**/api/**,**/CoverageReport/**" + run: devskim analyze --source-code . --file-format text -E --ignore-rule-ids DS176209 --ignore-globs "**/api/**,**/CoverageReport/**" --output-file devskim-results.txt - name: Show DevSkim Results in Summary if: failure()