From a64cf7dd840cb1346f4e4834aa1641f740bc1d5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:51:34 +0000 Subject: [PATCH 01/85] Bump Microsoft.Windows.Compatibility Bumps [Microsoft.Windows.Compatibility](https://github.com/dotnet/windowsdesktop) from 8.0.0 to 8.0.1. - [Release notes](https://github.com/dotnet/windowsdesktop/releases) - [Commits](https://github.com/dotnet/windowsdesktop/compare/v8.0.0...v8.0.1) --- updated-dependencies: - dependency-name: Microsoft.Windows.Compatibility dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../CSWinFormDataGridView/CSWinFormDataGridView.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windowsforms/datagridview/CSWinFormDataGridView/CSWinFormDataGridView.csproj b/windowsforms/datagridview/CSWinFormDataGridView/CSWinFormDataGridView.csproj index 3b1cbe1ca0b..abcbab16cdd 100644 --- a/windowsforms/datagridview/CSWinFormDataGridView/CSWinFormDataGridView.csproj +++ b/windowsforms/datagridview/CSWinFormDataGridView/CSWinFormDataGridView.csproj @@ -13,7 +13,7 @@ - + + + + true + + + + + + + + + + From 6c5ab81742af4729c5bc2c8d9c91d4eed781e58f Mon Sep 17 00:00:00 2001 From: Manuel Menegazzo <65919883+m3nax@users.noreply.github.com> Date: Thu, 11 Jan 2024 18:26:19 +0100 Subject: [PATCH 08/85] Added string length check before substring (#6278) --- orleans/ChatRoom/ChatRoom.Client/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orleans/ChatRoom/ChatRoom.Client/Program.cs b/orleans/ChatRoom/ChatRoom.Client/Program.cs index 55db29322ef..5148d2d7f50 100644 --- a/orleans/ChatRoom/ChatRoom.Client/Program.cs +++ b/orleans/ChatRoom/ChatRoom.Client/Program.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using ChatRoom; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -54,7 +54,7 @@ static async Task ProcessLoopAsync(ClientContext context) break; } - var firstTwoCharacters = input[..2]; + var firstTwoCharacters = input.Length >= 2 ? input[..2] : string.Empty; if (firstTwoCharacters is "/n") { context = context with { UserName = input.Replace("/n", "").Trim() }; From 421e547a4ea9620707ac6b5860f3653f0ff45f7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:00:59 +0000 Subject: [PATCH 09/85] Bump xunit in /core/getting-started/golden/test-library Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- core/getting-started/golden/test-library/test-library.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/golden/test-library/test-library.csproj b/core/getting-started/golden/test-library/test-library.csproj index 0c04df84c24..f813bbb4aa2 100644 --- a/core/getting-started/golden/test-library/test-library.csproj +++ b/core/getting-started/golden/test-library/test-library.csproj @@ -7,7 +7,7 @@ - + From 17c044496a2694c18ad2d9fd3067a8400e5aabde Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:01:13 +0000 Subject: [PATCH 10/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../MathService.Tests/MathService.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj b/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj index 76e671e0f0b..f16961cca58 100644 --- a/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj +++ b/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj @@ -13,7 +13,7 @@ - + From 2b6c20d9f14404dd0d70e2263b5798ba547f0358 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:09:16 +0000 Subject: [PATCH 11/85] Bump xunit in /csharp/unit-testing-best-practices/after Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../after/unit-testing-best-practices-after.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj b/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj index 3564912d2a7..3a9af37ec2f 100644 --- a/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj +++ b/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj @@ -8,7 +8,7 @@ - + From efa477c3071d66f175f73bb537c40f14642f544b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:13:14 +0000 Subject: [PATCH 12/85] Bump xunit from 2.6.5 to 2.6.6 in /csharp/unit-testing/XUnit.TestProject Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj b/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj index 8a05a703cb7..3d25a00ff1d 100644 --- a/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj +++ b/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj @@ -8,7 +8,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From b29368fcdafe5ce02aec8e7bcf6c5e51154661ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:17:11 +0000 Subject: [PATCH 13/85] Bump xunit in /core/getting-started/golden/test/test-library Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../golden/test/test-library/test-library.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/golden/test/test-library/test-library.csproj b/core/getting-started/golden/test/test-library/test-library.csproj index a307cde4b04..710255c587c 100644 --- a/core/getting-started/golden/test/test-library/test-library.csproj +++ b/core/getting-started/golden/test/test-library/test-library.csproj @@ -10,7 +10,7 @@ - + From a3b428e97016f899be4ba21b0645aff6ed8ef5b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:18:47 +0000 Subject: [PATCH 14/85] Bump xunit in /csharp/unit-testing-best-practices/before Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../before/unit-testing-best-practices-before.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj b/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj index 4c91b3e6343..0a531187df2 100644 --- a/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj +++ b/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj @@ -8,7 +8,7 @@ - + From c62edc67bfc4bed9117b57265590eb68976fb132 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:18:55 +0000 Subject: [PATCH 15/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.vbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj b/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj index 9a447cf673a..be1928e2b28 100644 --- a/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj +++ b/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj @@ -8,7 +8,7 @@ - + From b2b5d7af2d052b91a3b2374282fb2381ffc6601a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:19:42 +0000 Subject: [PATCH 16/85] Bump xunit in /csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj b/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj index edfbab829e7..624b55f97b5 100644 --- a/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj +++ b/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj @@ -12,7 +12,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 5fe0a3a16876adcc516233c6f1687e5de326e437 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:23:57 +0000 Subject: [PATCH 17/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj b/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj index 1baeabeebd8..31e6152acdf 100644 --- a/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj +++ b/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj @@ -11,7 +11,7 @@ - + From 92379e7cfb76027d6dcf11d181fd9315e3e026c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:33:20 +0000 Subject: [PATCH 18/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj b/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj index b1676b62ed3..9dc08a502e9 100644 --- a/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj +++ b/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj @@ -6,7 +6,7 @@ - + From d3bdb557d6635b893af22b09a577b843efdc1b73 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:40:48 +0000 Subject: [PATCH 19/85] Bump xunit in /core/console-apps/NewTypesMsBuild/test/NewTypesTests Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj b/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj index d5f77217174..77900a97f5c 100644 --- a/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj +++ b/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj @@ -6,7 +6,7 @@ - + From 5a9de430899a2051141a2b3caea85f3a8b9b8027 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:52:29 +0000 Subject: [PATCH 20/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tests/Car.Tests/Car.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj b/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj index 6e8b0c75512..76c4a5e5592 100644 --- a/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj +++ b/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj @@ -11,6 +11,6 @@ - + From b2511505f3579645730dfae9e1cc3364457311ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:57:50 +0000 Subject: [PATCH 21/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj b/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj index ac8768f9e41..55e1879d6e0 100644 --- a/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj +++ b/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj @@ -7,7 +7,7 @@ - + From 2e975e293bd7697d791645f9fad437e8803a9892 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:58:02 +0000 Subject: [PATCH 22/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj b/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj index 4c299c987e9..c010b8102b9 100644 --- a/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj +++ b/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj @@ -7,7 +7,7 @@ - + From fbe0f8290f119859a5d22be632150aec68db8a85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:58:16 +0000 Subject: [PATCH 23/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj b/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj index cc3eefe2332..0b93692014c 100644 --- a/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj +++ b/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj @@ -9,7 +9,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From a9c967846f5445c42ce8d468e2417fb8a1462552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 21:00:06 +0000 Subject: [PATCH 24/85] Bump xunit Bumps [xunit](https://github.com/xunit/xunit) from 2.6.5 to 2.6.6. - [Commits](https://github.com/xunit/xunit/compare/2.6.5...2.6.6) --- updated-dependencies: - dependency-name: xunit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../WordCounter/TestLibrary/TestLibrary.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj b/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj index 0c7e99131ae..39c5154773a 100644 --- a/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj +++ b/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj @@ -6,7 +6,7 @@ - + From c5400b0eff18cc8b18aee85c9804f345754db92d Mon Sep 17 00:00:00 2001 From: Cam Soper Date: Fri, 19 Jan 2024 15:09:24 -0600 Subject: [PATCH 25/85] Adding ft232h samples (#6583) --- iot/ft232h/ft232h.gpio/Program.cs | 18 ++++++++++++ iot/ft232h/ft232h.gpio/ft232h.gpio.csproj | 14 ++++++++++ iot/ft232h/ft232h.i2c/Program.cs | 34 +++++++++++++++++++++++ iot/ft232h/ft232h.i2c/ft232h.i2c.csproj | 14 ++++++++++ iot/ft232h/ft232h.spi/Program.cs | 19 +++++++++++++ iot/ft232h/ft232h.spi/ft232h.spi.csproj | 14 ++++++++++ 6 files changed, 113 insertions(+) create mode 100644 iot/ft232h/ft232h.gpio/Program.cs create mode 100644 iot/ft232h/ft232h.gpio/ft232h.gpio.csproj create mode 100644 iot/ft232h/ft232h.i2c/Program.cs create mode 100644 iot/ft232h/ft232h.i2c/ft232h.i2c.csproj create mode 100644 iot/ft232h/ft232h.spi/Program.cs create mode 100644 iot/ft232h/ft232h.spi/ft232h.spi.csproj diff --git a/iot/ft232h/ft232h.gpio/Program.cs b/iot/ft232h/ft232h.gpio/Program.cs new file mode 100644 index 00000000000..50dfbaa1609 --- /dev/null +++ b/iot/ft232h/ft232h.gpio/Program.cs @@ -0,0 +1,18 @@ +using System.Device.Gpio; +using Iot.Device.Ft232H; +using Iot.Device.FtCommon; + +Console.WriteLine("Blinking LED. Press Ctrl+C to end."); + +var ft232h = new Ft232HDevice(FtCommon.GetDevices()[0]); +var controller = ft232h.CreateGpioController(); + +int pin = Ft232HDevice.GetPinNumberFromString("D7"); +controller.OpenPin(pin, PinMode.Output); +bool ledOn = true; +while (true) +{ + controller.Write(pin, ledOn ? PinValue.High : PinValue.Low); + Thread.Sleep(1000); + ledOn = !ledOn; +} \ No newline at end of file diff --git a/iot/ft232h/ft232h.gpio/ft232h.gpio.csproj b/iot/ft232h/ft232h.gpio/ft232h.gpio.csproj new file mode 100644 index 00000000000..836568185e8 --- /dev/null +++ b/iot/ft232h/ft232h.gpio/ft232h.gpio.csproj @@ -0,0 +1,14 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + diff --git a/iot/ft232h/ft232h.i2c/Program.cs b/iot/ft232h/ft232h.i2c/Program.cs new file mode 100644 index 00000000000..1ae56e31156 --- /dev/null +++ b/iot/ft232h/ft232h.i2c/Program.cs @@ -0,0 +1,34 @@ +using System.Device.I2c; +using Iot.Device.Bmxx80; +using Iot.Device.Bmxx80.PowerMode; +using Iot.Device.Ft232H; +using Iot.Device.FtCommon; + +var devices = FtCommon.GetDevices(); +var ft232h = new Ft232HDevice(devices[0]); +var i2cSettings = new I2cConnectionSettings(0, Bme280.SecondaryI2cAddress); + +using var i2cDevice = ft232h.CreateI2cDevice(i2cSettings); +using var bme280 = new Bme280(i2cDevice); + +int measurementTime = bme280.GetMeasurementDuration(); + +while (true) +{ + Console.Clear(); + + bme280.SetPowerMode(Bmx280PowerMode.Forced); + Thread.Sleep(measurementTime); + + bme280.TryReadTemperature(out var tempValue); + bme280.TryReadPressure(out var preValue); + bme280.TryReadHumidity(out var humValue); + bme280.TryReadAltitude(out var altValue); + + Console.WriteLine($"Temperature: {tempValue.DegreesCelsius:0.#}\u00B0C"); + Console.WriteLine($"Pressure: {preValue.Hectopascals:#.##} hPa"); + Console.WriteLine($"Relative humidity: {humValue.Percent:#.##}%"); + Console.WriteLine($"Estimated altitude: {altValue.Meters:#} m"); + + Thread.Sleep(1000); +} \ No newline at end of file diff --git a/iot/ft232h/ft232h.i2c/ft232h.i2c.csproj b/iot/ft232h/ft232h.i2c/ft232h.i2c.csproj new file mode 100644 index 00000000000..836568185e8 --- /dev/null +++ b/iot/ft232h/ft232h.i2c/ft232h.i2c.csproj @@ -0,0 +1,14 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + diff --git a/iot/ft232h/ft232h.spi/Program.cs b/iot/ft232h/ft232h.spi/Program.cs new file mode 100644 index 00000000000..afb02aa5093 --- /dev/null +++ b/iot/ft232h/ft232h.spi/Program.cs @@ -0,0 +1,19 @@ +using System.Device.Gpio; +using System.Device.Spi; +using Iot.Device.Adc; +using Iot.Device.Ft232H; +using Iot.Device.FtCommon; + +var devices = FtCommon.GetDevices(); +var ft232h = new Ft232HDevice(devices[0]); +var hardwareSpiSettings = new SpiConnectionSettings(0, 3) { ClockFrequency = 1_000_000, DataBitLength = 8, ChipSelectLineActiveState = PinValue.Low }; +using SpiDevice spi = ft232h.CreateSpiDevice(hardwareSpiSettings); +using var mcp = new Mcp3008(spi); +while (true) +{ + Console.Clear(); + double value = mcp.Read(0); + Console.WriteLine($"{value}"); + Console.WriteLine($"{Math.Round(value/10.23, 1)}%"); + Thread.Sleep(500); +} \ No newline at end of file diff --git a/iot/ft232h/ft232h.spi/ft232h.spi.csproj b/iot/ft232h/ft232h.spi/ft232h.spi.csproj new file mode 100644 index 00000000000..836568185e8 --- /dev/null +++ b/iot/ft232h/ft232h.spi/ft232h.spi.csproj @@ -0,0 +1,14 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + From 6587ac56f8b44dc93dde023492b6f7477f5eae59 Mon Sep 17 00:00:00 2001 From: Cam Soper Date: Wed, 24 Jan 2024 12:25:13 -0600 Subject: [PATCH 26/85] Remove unneeded sample (#6586) * Adding ft232h samples * moving ft232h samples --- iot/ft232h/ft232h.gpio/Program.cs | 18 ------------ iot/ft232h/ft232h.gpio/ft232h.gpio.csproj | 14 ---------- iot/ft232h/ft232h.i2c/Program.cs | 34 ----------------------- iot/ft232h/ft232h.i2c/ft232h.i2c.csproj | 14 ---------- iot/ft232h/ft232h.spi/Program.cs | 19 ------------- iot/ft232h/ft232h.spi/ft232h.spi.csproj | 14 ---------- 6 files changed, 113 deletions(-) delete mode 100644 iot/ft232h/ft232h.gpio/Program.cs delete mode 100644 iot/ft232h/ft232h.gpio/ft232h.gpio.csproj delete mode 100644 iot/ft232h/ft232h.i2c/Program.cs delete mode 100644 iot/ft232h/ft232h.i2c/ft232h.i2c.csproj delete mode 100644 iot/ft232h/ft232h.spi/Program.cs delete mode 100644 iot/ft232h/ft232h.spi/ft232h.spi.csproj diff --git a/iot/ft232h/ft232h.gpio/Program.cs b/iot/ft232h/ft232h.gpio/Program.cs deleted file mode 100644 index 50dfbaa1609..00000000000 --- a/iot/ft232h/ft232h.gpio/Program.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System.Device.Gpio; -using Iot.Device.Ft232H; -using Iot.Device.FtCommon; - -Console.WriteLine("Blinking LED. Press Ctrl+C to end."); - -var ft232h = new Ft232HDevice(FtCommon.GetDevices()[0]); -var controller = ft232h.CreateGpioController(); - -int pin = Ft232HDevice.GetPinNumberFromString("D7"); -controller.OpenPin(pin, PinMode.Output); -bool ledOn = true; -while (true) -{ - controller.Write(pin, ledOn ? PinValue.High : PinValue.Low); - Thread.Sleep(1000); - ledOn = !ledOn; -} \ No newline at end of file diff --git a/iot/ft232h/ft232h.gpio/ft232h.gpio.csproj b/iot/ft232h/ft232h.gpio/ft232h.gpio.csproj deleted file mode 100644 index 836568185e8..00000000000 --- a/iot/ft232h/ft232h.gpio/ft232h.gpio.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - Exe - net8.0 - enable - enable - - - - - - - diff --git a/iot/ft232h/ft232h.i2c/Program.cs b/iot/ft232h/ft232h.i2c/Program.cs deleted file mode 100644 index 1ae56e31156..00000000000 --- a/iot/ft232h/ft232h.i2c/Program.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Device.I2c; -using Iot.Device.Bmxx80; -using Iot.Device.Bmxx80.PowerMode; -using Iot.Device.Ft232H; -using Iot.Device.FtCommon; - -var devices = FtCommon.GetDevices(); -var ft232h = new Ft232HDevice(devices[0]); -var i2cSettings = new I2cConnectionSettings(0, Bme280.SecondaryI2cAddress); - -using var i2cDevice = ft232h.CreateI2cDevice(i2cSettings); -using var bme280 = new Bme280(i2cDevice); - -int measurementTime = bme280.GetMeasurementDuration(); - -while (true) -{ - Console.Clear(); - - bme280.SetPowerMode(Bmx280PowerMode.Forced); - Thread.Sleep(measurementTime); - - bme280.TryReadTemperature(out var tempValue); - bme280.TryReadPressure(out var preValue); - bme280.TryReadHumidity(out var humValue); - bme280.TryReadAltitude(out var altValue); - - Console.WriteLine($"Temperature: {tempValue.DegreesCelsius:0.#}\u00B0C"); - Console.WriteLine($"Pressure: {preValue.Hectopascals:#.##} hPa"); - Console.WriteLine($"Relative humidity: {humValue.Percent:#.##}%"); - Console.WriteLine($"Estimated altitude: {altValue.Meters:#} m"); - - Thread.Sleep(1000); -} \ No newline at end of file diff --git a/iot/ft232h/ft232h.i2c/ft232h.i2c.csproj b/iot/ft232h/ft232h.i2c/ft232h.i2c.csproj deleted file mode 100644 index 836568185e8..00000000000 --- a/iot/ft232h/ft232h.i2c/ft232h.i2c.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - Exe - net8.0 - enable - enable - - - - - - - diff --git a/iot/ft232h/ft232h.spi/Program.cs b/iot/ft232h/ft232h.spi/Program.cs deleted file mode 100644 index afb02aa5093..00000000000 --- a/iot/ft232h/ft232h.spi/Program.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Device.Gpio; -using System.Device.Spi; -using Iot.Device.Adc; -using Iot.Device.Ft232H; -using Iot.Device.FtCommon; - -var devices = FtCommon.GetDevices(); -var ft232h = new Ft232HDevice(devices[0]); -var hardwareSpiSettings = new SpiConnectionSettings(0, 3) { ClockFrequency = 1_000_000, DataBitLength = 8, ChipSelectLineActiveState = PinValue.Low }; -using SpiDevice spi = ft232h.CreateSpiDevice(hardwareSpiSettings); -using var mcp = new Mcp3008(spi); -while (true) -{ - Console.Clear(); - double value = mcp.Read(0); - Console.WriteLine($"{value}"); - Console.WriteLine($"{Math.Round(value/10.23, 1)}%"); - Thread.Sleep(500); -} \ No newline at end of file diff --git a/iot/ft232h/ft232h.spi/ft232h.spi.csproj b/iot/ft232h/ft232h.spi/ft232h.spi.csproj deleted file mode 100644 index 836568185e8..00000000000 --- a/iot/ft232h/ft232h.spi/ft232h.spi.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - Exe - net8.0 - enable - enable - - - - - - - From 928c0c4f90a1351bc7f90bc829e4cef6643eaf89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:05:46 +0000 Subject: [PATCH 27/85] Bump Microsoft.ML Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../ProductSalesAnomalyDetection.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj b/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj index 663ab102a45..e204f8cb71c 100644 --- a/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj +++ b/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj @@ -6,7 +6,7 @@ - + From cfd7a49910099f81df47d071c256244c9c13b5df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:11:03 +0000 Subject: [PATCH 28/85] Bump Microsoft.ML in /machine-learning/tutorials/TextClassificationTF Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TextClassificationTF/TextClassificationTF.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj b/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj index 25051b4dbf5..7456a0b275e 100644 --- a/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj +++ b/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj @@ -6,7 +6,7 @@ - + From 420cb752b6de4bad00eb1144c646fcd502fde67c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:13:57 +0000 Subject: [PATCH 29/85] Bump Microsoft.ML.ImageAnalytics and Microsoft.ML Bumps [Microsoft.ML.ImageAnalytics](https://github.com/dotnet/machinelearning) and [Microsoft.ML](https://github.com/dotnet/machinelearning). These dependencies needed to be updated together. Updates `Microsoft.ML.ImageAnalytics` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) Updates `Microsoft.ML` from 3.0.0 to 3.0.1 - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.ImageAnalytics dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TransferLearningTF/TransferLearningTF.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj b/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj index a5a1aed8183..671deef3367 100644 --- a/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj +++ b/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj @@ -7,8 +7,8 @@ - - + + From 71e6d9e3f1f1c1be79429ece2350ed2fb831dd0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:19:00 +0000 Subject: [PATCH 30/85] Bump MSTest.TestFramework in /csharp/unit-testing/MSTest.Project Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestFramework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- csharp/unit-testing/MSTest.Project/MSTest.Project.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj b/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj index 18da803d946..0acaf77dfc9 100644 --- a/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj +++ b/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj @@ -9,7 +9,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 82cd12b8dcb79a575a9fa79994d9563d0323cd28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:20:20 +0000 Subject: [PATCH 31/85] Bump MSTest.TestFramework Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestFramework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj b/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj index 4b8d5542696..8961e9660ea 100644 --- a/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj +++ b/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj @@ -10,7 +10,7 @@ - + From f58ffcbcaab5d71fd0dd4e0ec839e521bbcc37a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:23:34 +0000 Subject: [PATCH 32/85] Bump MSTest.TestAdapter Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../MathService.Tests/MathService.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj b/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj index c6856cd4b16..781e3580bb0 100644 --- a/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj +++ b/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj @@ -13,7 +13,7 @@ - + From fded2564dc23d869b69549bfaa6d59ab419c72d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:23:42 +0000 Subject: [PATCH 33/85] Bump Microsoft.ML in /machine-learning/tutorials/SentimentAnalysis Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/SentimentAnalysis/SentimentAnalysis.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/SentimentAnalysis/SentimentAnalysis.csproj b/machine-learning/tutorials/SentimentAnalysis/SentimentAnalysis.csproj index ab1e32e61ec..28e5498c259 100644 --- a/machine-learning/tutorials/SentimentAnalysis/SentimentAnalysis.csproj +++ b/machine-learning/tutorials/SentimentAnalysis/SentimentAnalysis.csproj @@ -10,7 +10,7 @@ - + From e18cc6f09e41449910c9fe5bf80773a5f7b268c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:25:18 +0000 Subject: [PATCH 34/85] Bump MSTest.TestFramework Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestFramework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../MathService.Tests/MathService.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj b/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj index 781e3580bb0..a5244dace7f 100644 --- a/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj +++ b/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj @@ -14,7 +14,7 @@ - + From 5c6efd08161ffbd7aa4399997ecdb724e608cbc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:31:00 +0000 Subject: [PATCH 35/85] Bump MSTest.TestFramework Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestFramework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj b/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj index 3a8bdb94972..54039d7e0c1 100644 --- a/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj +++ b/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj @@ -7,7 +7,7 @@ - + From f60e343c7da5696f7b0764909f4ca46c4b203f83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:31:39 +0000 Subject: [PATCH 36/85] Bump Microsoft.ML Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../GitHubIssueClassification/GitHubIssueClassification.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/GitHubIssueClassification/GitHubIssueClassification.csproj b/machine-learning/tutorials/GitHubIssueClassification/GitHubIssueClassification.csproj index e9fee556e27..b770820a35f 100644 --- a/machine-learning/tutorials/GitHubIssueClassification/GitHubIssueClassification.csproj +++ b/machine-learning/tutorials/GitHubIssueClassification/GitHubIssueClassification.csproj @@ -15,7 +15,7 @@ - + From 7f61880c4bf82acfb0f4a7cbb549765994dd93be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:34:40 +0000 Subject: [PATCH 37/85] Bump MSTest.TestAdapter Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj b/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj index 54039d7e0c1..2b1143fda90 100644 --- a/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj +++ b/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj @@ -6,7 +6,7 @@ - + From c2e1028991d6a95043b833064b901124140cdd81 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:37:34 +0000 Subject: [PATCH 38/85] Bump MSTest.TestAdapter Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.vbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj b/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj index d3129446921..db85ea42412 100644 --- a/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj +++ b/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj @@ -8,7 +8,7 @@ - + From 6de8abbe51035d990312a29ccea9325957d400d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:40:01 +0000 Subject: [PATCH 39/85] Bump Microsoft.ML in /machine-learning/tutorials/TaxiFarePrediction Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj b/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj index 8a7c4a583fb..241bd87227a 100644 --- a/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj +++ b/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj @@ -10,7 +10,7 @@ - + From 1263ce3516ea0e21dc533eb73af35059223578e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:46:30 +0000 Subject: [PATCH 40/85] Bump Microsoft.ML in /machine-learning/tutorials/IrisFlowerClustering Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/IrisFlowerClustering/IrisFlowerClustering.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/IrisFlowerClustering/IrisFlowerClustering.csproj b/machine-learning/tutorials/IrisFlowerClustering/IrisFlowerClustering.csproj index c22f52e0969..9b426170589 100644 --- a/machine-learning/tutorials/IrisFlowerClustering/IrisFlowerClustering.csproj +++ b/machine-learning/tutorials/IrisFlowerClustering/IrisFlowerClustering.csproj @@ -6,7 +6,7 @@ - + From b7a19ee36f91c22b443fc87724b59751f50176cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:54:25 +0000 Subject: [PATCH 41/85] Bump Microsoft.ML in /machine-learning/tutorials/MovieRecommendation Bumps [Microsoft.ML](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/MovieRecommendation/MovieRecommendation.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj b/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj index 00fc036e0b7..8c354f356e2 100644 --- a/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj +++ b/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj @@ -6,7 +6,7 @@ - + From b82c08dcc45ceb44d78f582cd001b939766a5b2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 09:59:20 -0500 Subject: [PATCH 42/85] Bump MSTest.TestAdapter in /csharp/unit-testing/MSTest.Project (#6593) Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bill Wagner --- csharp/unit-testing/MSTest.Project/MSTest.Project.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj b/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj index 0acaf77dfc9..b02595e7e36 100644 --- a/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj +++ b/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj @@ -8,7 +8,7 @@ - + all From 5c32309313dd0a4a2378410dc4b76e77c636963e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 10:00:00 -0500 Subject: [PATCH 43/85] Bump MSTest.TestAdapter (#6595) Bumps [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestAdapter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bill Wagner --- .../Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj b/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj index 8961e9660ea..e1e1350fdd5 100644 --- a/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj +++ b/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj @@ -9,7 +9,7 @@ - + From d51488ecd50cf8dc774bdb0e0e6e2044bbe5ba5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 10:00:45 -0500 Subject: [PATCH 44/85] Bump MSTest.TestFramework (#6603) Bumps [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.1.1 to 3.2.0. - [Release notes](https://github.com/microsoft/testfx/releases) - [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md) - [Commits](https://github.com/microsoft/testfx/compare/v3.1.1...v.3.2.0) --- updated-dependencies: - dependency-name: MSTest.TestFramework dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bill Wagner --- .../PrimeService.Tests/PrimeService.Tests.vbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj b/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj index db85ea42412..457ace2415a 100644 --- a/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj +++ b/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj @@ -8,8 +8,8 @@ + - From 3e5f023eb6c0681fc41839eaa1be54b4d0d0f2ea Mon Sep 17 00:00:00 2001 From: Thays Grazia Date: Tue, 30 Jan 2024 16:34:56 -0300 Subject: [PATCH 45/85] Fix compilation (#6609) --- core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj b/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj index 2c6b28e1be1..8835757b383 100644 --- a/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj +++ b/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 From f685ee0bd00f9e2f32ce366ae5c4097fce3be5d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:11:44 +0000 Subject: [PATCH 46/85] Bump Microsoft.ML.TensorFlow Bumps [Microsoft.ML.TensorFlow](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.TensorFlow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TextClassificationTF/TextClassificationTF.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj b/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj index 7456a0b275e..1c94a516462 100644 --- a/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj +++ b/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj @@ -8,7 +8,7 @@ - + From 5d5bc935ac0d6f6b63fe8e12d12a9010997c0c07 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:12:54 +0000 Subject: [PATCH 47/85] Bump Microsoft.ML.SampleUtils Bumps [Microsoft.ML.SampleUtils](https://github.com/dotnet/machinelearning) from 0.21.0 to 0.21.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.SampleUtils dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TextClassificationTF/TextClassificationTF.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj b/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj index 1c94a516462..80c8a74ca8d 100644 --- a/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj +++ b/machine-learning/tutorials/TextClassificationTF/TextClassificationTF.csproj @@ -7,7 +7,7 @@ - + From 1de64b6eb52e914ba1d515272789907c5234b160 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:26:15 +0000 Subject: [PATCH 48/85] Bump Octokit Bumps [Octokit](https://github.com/octokit/octokit.net) from 9.1.0 to 9.1.1. - [Release notes](https://github.com/octokit/octokit.net/releases) - [Changelog](https://github.com/octokit/octokit.net/blob/main/docs/releases.md) - [Commits](https://github.com/octokit/octokit.net/compare/v9.1.0...v9.1.1) --- updated-dependencies: - dependency-name: Octokit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj b/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj index 3f8391d5d1b..873bc0c18c3 100644 --- a/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj +++ b/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj @@ -8,7 +8,7 @@ - + From b73c07ab5f3cfd3c2bf35e4592f3f1dd4c7485f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:32:15 +0000 Subject: [PATCH 49/85] Bump Microsoft.ML.Recommender Bumps [Microsoft.ML.Recommender](https://github.com/dotnet/machinelearning) from 0.21.0 to 0.21.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.Recommender dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/MovieRecommendation/MovieRecommendation.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj b/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj index 8c354f356e2..4a3e5d71b22 100644 --- a/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj +++ b/machine-learning/tutorials/MovieRecommendation/MovieRecommendation.csproj @@ -7,7 +7,7 @@ - + From c7aa64b47eabb9e2d80e9a7f34ce5b951eff0a7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:49:39 +0000 Subject: [PATCH 50/85] Bump Microsoft.ML.FastTree Bumps [Microsoft.ML.FastTree](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.FastTree dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj b/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj index 241bd87227a..e8c58ba1d72 100644 --- a/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj +++ b/machine-learning/tutorials/TaxiFarePrediction/TaxiFarePrediction.csproj @@ -11,7 +11,7 @@ - + From 4020c4ab29ba075134c02b6eb4c0a7cbb336471c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:51:12 +0000 Subject: [PATCH 51/85] Bump Octokit Bumps [Octokit](https://github.com/octokit/octokit.net) from 9.1.0 to 9.1.1. - [Release notes](https://github.com/octokit/octokit.net/releases) - [Changelog](https://github.com/octokit/octokit.net/blob/main/docs/releases.md) - [Commits](https://github.com/octokit/octokit.net/compare/v9.1.0...v9.1.1) --- updated-dependencies: - dependency-name: Octokit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../start/IssuePRreport/IssuePRreport/IssuePRreport.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj b/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj index 896aeca01c6..d210c2d841a 100644 --- a/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj +++ b/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj @@ -8,7 +8,7 @@ - + From 35e3b003ce429e26c05377993642ad9ad529b298 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:55:40 +0000 Subject: [PATCH 52/85] Bump Microsoft.AspNetCore.Mvc.NewtonsoftJson Bumps [Microsoft.AspNetCore.Mvc.NewtonsoftJson](https://github.com/dotnet/aspnetcore) from 8.0.0 to 8.0.1. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md) - [Commits](https://github.com/dotnet/aspnetcore/compare/v8.0.0...v8.0.1) --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Mvc.NewtonsoftJson dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj b/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj index 8835757b383..d72634727f4 100644 --- a/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj +++ b/core/diagnostics/DiagnosticScenarios/DiagnosticScenarios.csproj @@ -5,7 +5,7 @@ - + From cd32d4056015994ae85c794d5f2e3bcc248ee5e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:56:45 +0000 Subject: [PATCH 53/85] Bump Microsoft.ML.TimeSeries Bumps [Microsoft.ML.TimeSeries](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.TimeSeries dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../ProductSalesAnomalyDetection.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj b/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj index e204f8cb71c..2999528a61e 100644 --- a/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj +++ b/machine-learning/tutorials/ProductSalesAnomalyDetection/ProductSalesAnomalyDetection.csproj @@ -7,7 +7,7 @@ - + From 1e0255a7c10b620ecc1ec0ede33ec07b38d38451 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 21:00:11 +0000 Subject: [PATCH 54/85] Bump Microsoft.ML.TensorFlow Bumps [Microsoft.ML.TensorFlow](https://github.com/dotnet/machinelearning) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/dotnet/machinelearning/releases) - [Commits](https://github.com/dotnet/machinelearning/commits) --- updated-dependencies: - dependency-name: Microsoft.ML.TensorFlow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../tutorials/TransferLearningTF/TransferLearningTF.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj b/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj index 671deef3367..f3ab5e0e39a 100644 --- a/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj +++ b/machine-learning/tutorials/TransferLearningTF/TransferLearningTF.csproj @@ -9,7 +9,7 @@ - + From b46f236129ce9e02730d7d08b0ce385ed7036a3d Mon Sep 17 00:00:00 2001 From: "dotnet-policy-service[bot]" <123482357+dotnet-policy-service[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 11:32:13 -0800 Subject: [PATCH 55/85] FabricBot: Onboarding to GitOps.ResourceManagement because of FabricBot decommissioning (#6622) --- .github/fabricbot.json | 259 ------------------------ .github/policies/resourceManagement.yml | 106 ++++++++++ 2 files changed, 106 insertions(+), 259 deletions(-) delete mode 100644 .github/fabricbot.json create mode 100644 .github/policies/resourceManagement.yml diff --git a/.github/fabricbot.json b/.github/fabricbot.json deleted file mode 100644 index 5e20de996c6..00000000000 --- a/.github/fabricbot.json +++ /dev/null @@ -1,259 +0,0 @@ -{ - "version": "1.0", - "tasks": [ - { - "taskType": "scheduled", - "capabilityId": "ScheduledPR", - "subCapability": "ScheduledPR", - "version": "1.0", - "config": { - "head": "main", - "base": "live", - "body": "Please don't squash-merge this PR.", - "title": "Merge main into live", - "frequency": [ - { - "weekDay": 1, - "hours": [ - 22 - ], - "timezoneOffset": -7 - }, - { - "weekDay": 2, - "hours": [ - 22 - ], - "timezoneOffset": -7 - }, - { - "weekDay": 3, - "hours": [ - 22 - ], - "timezoneOffset": -7 - }, - { - "weekDay": 4, - "hours": [ - 22 - ], - "timezoneOffset": -7 - }, - { - "weekDay": 5, - "hours": [ - 22 - ], - "timezoneOffset": -7 - } - ], - "taskName": "Push to live branch (publish)" - } - }, - { - "taskType": "trigger", - "capabilityId": "IssueResponder", - "subCapability": "PullRequestResponder", - "version": "1.0", - "config": { - "taskName": "Label community PRs", - "actions": [ - { - "name": "addLabel", - "parameters": { - "label": "community-contribution" - } - } - ], - "eventType": "pull_request", - "eventNames": [ - "pull_request", - "issues", - "project_card" - ], - "conditions": { - "operator": "and", - "operands": [ - { - "name": "isAction", - "parameters": { - "action": "opened" - } - }, - { - "operator": "and", - "operands": [ - { - "operator": "not", - "operands": [ - { - "name": "activitySenderHasPermissions", - "parameters": { - "permissions": "admin" - } - } - ] - }, - { - "operator": "not", - "operands": [ - { - "name": "activitySenderHasPermissions", - "parameters": { - "permissions": "maintain" - } - } - ] - }, - { - "operator": "not", - "operands": [ - { - "name": "activitySenderHasPermissions", - "parameters": { - "permissions": "write" - } - } - ] - }, - { - "operator": "not", - "operands": [ - { - "name": "isActivitySender", - "parameters": { - "user": "github-actions[bot]" - } - } - ] - }, - { - "operator": "not", - "operands": [ - { - "name": "isActivitySender", - "parameters": { - "user": "github-actions" - } - } - ] - }, - { - "operator": "not", - "operands": [ - { - "name": "isActivitySender", - "parameters": { - "user": "azure-sdk" - } - } - ] - }, - { - "operator": "not", - "operands": [ - { - "name": "isActivitySender", - "parameters": { - "user": "dependabot" - } - } - ] - } - ] - } - ] - } - } - }, - { - "taskType": "trigger", - "capabilityId": "IssueResponder", - "subCapability": "PullRequestResponder", - "version": "1.0", - "config": { - "conditions": { - "operator": "and", - "operands": [ - { - "name": "hasLabel", - "parameters": { - "label": "dependencies" - } - }, - { - "name": "isActivitySender", - "parameters": { - "user": "dependabot" - } - } - ] - }, - "eventType": "pull_request", - "eventNames": [ - "pull_request", - "issues", - "project_card" - ], - "taskName": "Reply to dependabot PRs with automation command to squash and merge", - "actions": [ - { - "name": "addReply", - "parameters": { - "comment": "@dependabot squash and merge" - } - } - ] - } - }, - { - "taskType": "trigger", - "capabilityId": "IssueResponder", - "subCapability": "PullRequestResponder", - "version": "1.0", - "config": { - "conditions": { - "operator": "and", - "operands": [ - { - "name": "isActivitySender", - "parameters": { - "user": "azure-sdk" - } - } - ] - }, - "eventType": "pull_request", - "eventNames": [ - "pull_request", - "issues", - "project_card" - ], - "taskName": "Label PRs from the Azure SDK bot", - "actions": [ - { - "name": "addLabel", - "parameters": { - "label": "azure-sdk-shipit" - } - } - ] - } - }, - { - "taskType": "trigger", - "capabilityId": "AutoMerge", - "subCapability": "AutoMerge", - "version": "1.0", - "config": { - "taskName": "Auto-merge Azure SDK PRs with green builds", - "label": "azure-sdk-shipit", - "allowAutoMergeInstructionsWithoutLabel": false, - "mergeType": "squash", - "requireAllStatuses": true - } - } - ], - "userGroups": [] -} diff --git a/.github/policies/resourceManagement.yml b/.github/policies/resourceManagement.yml new file mode 100644 index 00000000000..19ceaa6b7e6 --- /dev/null +++ b/.github/policies/resourceManagement.yml @@ -0,0 +1,106 @@ +id: +name: GitOps.PullRequestIssueManagement +description: GitOps.PullRequestIssueManagement primitive +owner: +resource: repository +disabled: false +where: +configuration: + resourceManagementConfiguration: + scheduledSearches: + - description: Push to live branch (publish) + frequencies: + - weekday: + day: Monday + time: 22:0 + - weekday: + day: Tuesday + time: 22:0 + - weekday: + day: Wednesday + time: 22:0 + - weekday: + day: Thursday + time: 22:0 + - weekday: + day: Friday + time: 22:0 + filters: [] + actions: + - createPullRequest: + head: main + base: live + title: Merge main into live + body: Please don't squash-merge this PR. + eventResponderTasks: + - if: + - payloadType: Pull_Request + - isAction: + action: Opened + - and: + - not: + activitySenderHasPermission: + permission: Admin + - not: + activitySenderHasPermission: + permission: Write + - not: + activitySenderHasPermission: + permission: Write + - not: + isActivitySender: + user: github-actions[bot] + issueAuthor: False + - not: + isActivitySender: + user: github-actions + issueAuthor: False + - not: + isActivitySender: + user: azure-sdk + issueAuthor: False + - not: + isActivitySender: + user: dependabot + issueAuthor: False + then: + - addLabel: + label: community-contribution + description: Label community PRs + - if: + - payloadType: Pull_Request + - hasLabel: + label: dependencies + - isActivitySender: + user: dependabot + issueAuthor: False + then: + - addReply: + reply: '@dependabot squash and merge' + description: Reply to dependabot PRs with automation command to squash and merge + - if: + - payloadType: Pull_Request + - isActivitySender: + user: azure-sdk + issueAuthor: False + then: + - addLabel: + label: azure-sdk-shipit + description: Label PRs from the Azure SDK bot + - if: + - payloadType: Pull_Request + - hasLabel: + label: azure-sdk-shipit + then: + - enableAutoMerge: + mergeMethod: Squash + description: Auto-merge Azure SDK PRs with green builds + - if: + - payloadType: Pull_Request + - labelRemoved: + label: azure-sdk-shipit + then: + - disableAutoMerge + description: Auto-merge Azure SDK PRs with green builds +onFailure: +onSuccess: From 680f2fd22f105292ba9d8dd0b7df7ed104749463 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:05:04 +0000 Subject: [PATCH 56/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.vbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-vb-nunit/PrimeService.Tests/PrimeService.Tests.vbproj b/core/getting-started/unit-testing-vb-nunit/PrimeService.Tests/PrimeService.Tests.vbproj index 63b1ce53df9..fc88e2fbb23 100644 --- a/core/getting-started/unit-testing-vb-nunit/PrimeService.Tests/PrimeService.Tests.vbproj +++ b/core/getting-started/unit-testing-vb-nunit/PrimeService.Tests/PrimeService.Tests.vbproj @@ -10,7 +10,7 @@ - + From f01ef5345e79d5ab51d0ca842b05e878027667c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:07:37 +0000 Subject: [PATCH 57/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj b/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj index 31e6152acdf..e662e6a6e20 100644 --- a/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj +++ b/framework/libraries/migrate-library-csproj/tests/Car.Tests/Car.Tests.csproj @@ -9,7 +9,7 @@ - + From 81fb4b8a4aecdfb16cadc619c7785d5691fc00b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:08:57 +0000 Subject: [PATCH 58/85] Bump ReportGenerator Bumps [ReportGenerator](https://github.com/danielpalme/ReportGenerator) from 5.2.0 to 5.2.1. - [Release notes](https://github.com/danielpalme/ReportGenerator/releases) - [Commits](https://github.com/danielpalme/ReportGenerator/compare/v5.2.0...v5.2.1) --- updated-dependencies: - dependency-name: ReportGenerator dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj b/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj index 0b93692014c..60f3cedecc0 100644 --- a/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj +++ b/csharp/unit-testing-code-coverage/XUnit.Coverlet.Collector/XUnit.Coverlet.Collector.csproj @@ -8,7 +8,7 @@ - + all From 35cb5f4f19c156d4f1d9743801e884480d29ecb7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:09:40 +0000 Subject: [PATCH 59/85] Bump Microsoft.NET.Test.Sdk in /csharp/unit-testing-best-practices/after Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../after/unit-testing-best-practices-after.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj b/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj index 3a9af37ec2f..1a5fa4f7be2 100644 --- a/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj +++ b/csharp/unit-testing-best-practices/after/unit-testing-best-practices-after.csproj @@ -7,7 +7,7 @@ - + From 065db504e38d236e70de4534ac40e2f5e3320102 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:10:46 +0000 Subject: [PATCH 60/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../MathService.Tests/MathService.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-with-fsharp-nunit/MathService.Tests/MathService.Tests.fsproj b/core/getting-started/unit-testing-with-fsharp-nunit/MathService.Tests/MathService.Tests.fsproj index 3a49a114f59..f7df9ad242a 100644 --- a/core/getting-started/unit-testing-with-fsharp-nunit/MathService.Tests/MathService.Tests.fsproj +++ b/core/getting-started/unit-testing-with-fsharp-nunit/MathService.Tests/MathService.Tests.fsproj @@ -15,7 +15,7 @@ - + From 2d6d620a0824e622ad4f51f2ebe3aa8a303c67fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:11:58 +0000 Subject: [PATCH 61/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj b/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj index 9dc08a502e9..1fdd96e1463 100644 --- a/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj +++ b/csharp/tutorials/nullable-reference-migration/start/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj @@ -4,7 +4,7 @@ false - + From dacf77a882d30903fbb7327f6e6cfd6e3dffb580 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:16:37 +0000 Subject: [PATCH 62/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj b/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj index 624b55f97b5..3dd9288cdef 100644 --- a/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj +++ b/csharp/unit-testing-code-coverage/XUnit.Coverlet.MSBuild/XUnit.Coverlet.MSBuild.csproj @@ -11,7 +11,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all From 258cd5dc68c36de7fb43ef88ddcb2826df8c1caf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:18:44 +0000 Subject: [PATCH 63/85] Bump Microsoft.NET.Test.Sdk in /csharp/unit-testing/NUnit.TestProject Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- csharp/unit-testing/NUnit.TestProject/NUnit.Project.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing/NUnit.TestProject/NUnit.Project.csproj b/csharp/unit-testing/NUnit.TestProject/NUnit.Project.csproj index a43a29ea716..7fefc7d592d 100644 --- a/csharp/unit-testing/NUnit.TestProject/NUnit.Project.csproj +++ b/csharp/unit-testing/NUnit.TestProject/NUnit.Project.csproj @@ -9,7 +9,7 @@ - + From ad1822dc55a9d831871a9792e3c3128096ae0c87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:26:04 +0000 Subject: [PATCH 64/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj b/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj index 2b1143fda90..ea11ef171a1 100644 --- a/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj +++ b/core/getting-started/unit-testing-using-mstest/PrimeService.Tests/PrimeService.Tests.csproj @@ -5,7 +5,7 @@ - + From 3edf8783e57a7aae87c42cda40f4011e9cf865c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:27:09 +0000 Subject: [PATCH 65/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj b/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj index e1e1350fdd5..eabe82c4203 100644 --- a/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj +++ b/csharp/roslyn-sdk/Tutorials/MakeConst/MakeConst.Test/MakeConst.Test.csproj @@ -8,7 +8,7 @@ - + From 72812635c1cf3da18380fadeb3f9069e32fc8bd5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:33:33 +0000 Subject: [PATCH 66/85] Bump Octokit Bumps [Octokit](https://github.com/octokit/octokit.net) from 9.1.1 to 9.1.2. - [Release notes](https://github.com/octokit/octokit.net/releases) - [Changelog](https://github.com/octokit/octokit.net/blob/main/docs/releases.md) - [Commits](https://github.com/octokit/octokit.net/compare/v9.1.1...v9.1.2) --- updated-dependencies: - dependency-name: Octokit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj b/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj index 873bc0c18c3..7c3a5f37aff 100644 --- a/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj +++ b/csharp/tutorials/AsyncStreams/finished/IssuePRreport/IssuePRreport/IssuePRreport.csproj @@ -8,7 +8,7 @@ - + From 1540c7b1402c7c06b5fbde5ce460328afa19c703 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:33:55 +0000 Subject: [PATCH 67/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../before/unit-testing-best-practices-before.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj b/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj index 0a531187df2..f3c202fb201 100644 --- a/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj +++ b/csharp/unit-testing-best-practices/before/unit-testing-best-practices-before.csproj @@ -7,7 +7,7 @@ - + From 53576e0d9775ef281c0d984adca705f338f5d256 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:36:04 +0000 Subject: [PATCH 68/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-using-nunit/PrimeService.Tests/PrimeService.Tests.csproj b/core/getting-started/unit-testing-using-nunit/PrimeService.Tests/PrimeService.Tests.csproj index b6031482f24..5f9f491f5f9 100644 --- a/core/getting-started/unit-testing-using-nunit/PrimeService.Tests/PrimeService.Tests.csproj +++ b/core/getting-started/unit-testing-using-nunit/PrimeService.Tests/PrimeService.Tests.csproj @@ -10,7 +10,7 @@ - + From b932c6644602dc66cae2305703620466fbab55c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:36:38 +0000 Subject: [PATCH 69/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.vbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj b/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj index 457ace2415a..e29fd1875bb 100644 --- a/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj +++ b/core/getting-started/unit-testing-vb-mstest/PrimeService.Tests/PrimeService.Tests.vbproj @@ -7,7 +7,7 @@ - + From fd48dd9f3064051c9f1ef19e2f4749ba2088857e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:38:49 +0000 Subject: [PATCH 70/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj b/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj index 55e1879d6e0..963634503df 100644 --- a/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj +++ b/csharp/tutorials/nullable-reference-migration/finished/SimpleFeedReader.Tests/SimpleFeedReader.Tests.csproj @@ -5,7 +5,7 @@ false - + From f9bec095b7e9eaa2ae88e971c803bdfab879ed6b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:39:16 +0000 Subject: [PATCH 71/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../tests/Car.Tests/Car.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj b/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj index 76c4a5e5592..26df3ab2d1f 100644 --- a/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj +++ b/framework/libraries/migrate-library-csproj-keep-existing/tests/Car.Tests/Car.Tests.csproj @@ -9,7 +9,7 @@ - + From 252f665e1eb8e5fb238df54807656fd58649e9b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:40:06 +0000 Subject: [PATCH 72/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.vbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj b/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj index be1928e2b28..d3d6f14f456 100644 --- a/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj +++ b/core/getting-started/unit-testing-vb-dotnet-test/PrimeService.Tests/PrimeService.Tests.vbproj @@ -7,7 +7,7 @@ - + From 72fae8b9d1d165a8ecbba6db85aa82be494e2d03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:42:55 +0000 Subject: [PATCH 73/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../MathService.Tests/MathService.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj b/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj index a5244dace7f..43b5df77d84 100644 --- a/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj +++ b/core/getting-started/unit-testing-with-fsharp-mstest/MathService.Tests/MathService.Tests.fsproj @@ -12,7 +12,7 @@ - + From bf21f2f87fb78972920d0463bcea8ea2f870bc93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:43:39 +0000 Subject: [PATCH 74/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj b/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj index 77900a97f5c..1af6c396c6c 100644 --- a/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj +++ b/core/console-apps/NewTypesMsBuild/test/NewTypesTests/NewTypesTests.csproj @@ -5,7 +5,7 @@ - + From 73ee18e4fb83d9503458b19b0f634ad6bed31adf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:45:37 +0000 Subject: [PATCH 75/85] Bump Octokit Bumps [Octokit](https://github.com/octokit/octokit.net) from 9.1.1 to 9.1.2. - [Release notes](https://github.com/octokit/octokit.net/releases) - [Changelog](https://github.com/octokit/octokit.net/blob/main/docs/releases.md) - [Commits](https://github.com/octokit/octokit.net/compare/v9.1.1...v9.1.2) --- updated-dependencies: - dependency-name: Octokit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../start/IssuePRreport/IssuePRreport/IssuePRreport.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj b/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj index d210c2d841a..c0fc04c9869 100644 --- a/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj +++ b/csharp/tutorials/AsyncStreams/start/IssuePRreport/IssuePRreport/IssuePRreport.csproj @@ -8,7 +8,7 @@ - + From 71ada47cc02984a5750625449db12ab9655915ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:46:45 +0000 Subject: [PATCH 76/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../MathService.Tests/MathService.Tests.fsproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj b/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj index f16961cca58..f11cb2603e3 100644 --- a/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj +++ b/core/getting-started/unit-testing-with-fsharp/MathService.Tests/MathService.Tests.fsproj @@ -12,7 +12,7 @@ - + From c86f3a9162c0649eadb83961c0401911035b6351 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:47:54 +0000 Subject: [PATCH 77/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../golden/test/test-library/test-library.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/golden/test/test-library/test-library.csproj b/core/getting-started/golden/test/test-library/test-library.csproj index 710255c587c..b4cef4f979d 100644 --- a/core/getting-started/golden/test/test-library/test-library.csproj +++ b/core/getting-started/golden/test/test-library/test-library.csproj @@ -9,7 +9,7 @@ - + From a2ef4d53d54158c1cf977463ac2e7c653f1701c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:48:08 +0000 Subject: [PATCH 78/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../PrimeService.Tests/PrimeService.Tests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj b/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj index c010b8102b9..274f595da6f 100644 --- a/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj +++ b/core/getting-started/unit-testing-using-dotnet-test/PrimeService.Tests/PrimeService.Tests.csproj @@ -6,7 +6,7 @@ - + From 8db11ee66ea8461c485430941705938ef191fa7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:48:29 +0000 Subject: [PATCH 79/85] Bump Microsoft.NET.Test.Sdk in /csharp/unit-testing/XUnit.TestProject Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj b/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj index 3d25a00ff1d..fb552001568 100644 --- a/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj +++ b/csharp/unit-testing/XUnit.TestProject/XUnit.Project.csproj @@ -7,7 +7,7 @@ - + all From c2dd35f2e2264756fde0cc4f78f3df45d5188f0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:49:56 +0000 Subject: [PATCH 80/85] Bump Microsoft.NET.Test.Sdk Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../WordCounter/TestLibrary/TestLibrary.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj b/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj index 39c5154773a..f9bdbcd1b92 100644 --- a/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj +++ b/core/tutorials/using-on-mac-vs-full-solution/WordCounter/TestLibrary/TestLibrary.csproj @@ -5,7 +5,7 @@ - + From f5815b84de003ba2af1b6f661d7db78f64903794 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:53:07 +0000 Subject: [PATCH 81/85] Bump Microsoft.NET.Test.Sdk in /csharp/unit-testing/MSTest.Project Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- csharp/unit-testing/MSTest.Project/MSTest.Project.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj b/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj index b02595e7e36..634d36047c9 100644 --- a/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj +++ b/csharp/unit-testing/MSTest.Project/MSTest.Project.csproj @@ -7,7 +7,7 @@ - + From 1423429f016bb7a1f656fec8ce53aac0de686b3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 20:58:26 +0000 Subject: [PATCH 82/85] Bump Microsoft.NET.Test.Sdk in /core/getting-started/golden/test-library Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- core/getting-started/golden/test-library/test-library.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/getting-started/golden/test-library/test-library.csproj b/core/getting-started/golden/test-library/test-library.csproj index f813bbb4aa2..4f0ed776c8f 100644 --- a/core/getting-started/golden/test-library/test-library.csproj +++ b/core/getting-started/golden/test-library/test-library.csproj @@ -6,7 +6,7 @@ - + From 5a2c34ded09a0cab58fa21de9d82ed81e47893cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:19:17 -0500 Subject: [PATCH 83/85] Bump Microsoft.NET.Test.Sdk (#6626) Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.8.0 to 17.9.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bill Wagner From 2890083b73a603c8da88438f987a6599b00ec9f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Wed, 14 Feb 2024 17:27:21 +0900 Subject: [PATCH 84/85] Add a warning to building static libraries with naot (#6651) --- core/nativeaot/NativeLibrary/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/nativeaot/NativeLibrary/README.md b/core/nativeaot/NativeLibrary/README.md index fffce86fccb..3c42646e21a 100644 --- a/core/nativeaot/NativeLibrary/README.md +++ b/core/nativeaot/NativeLibrary/README.md @@ -9,7 +9,7 @@ Create a .NET class library project using `dotnet new classlib -o NativeLibrary` ## Building shared libraries ```bash -> dotnet publish /p:NativeLib=Shared --use-current-runtime +> dotnet publish --use-current-runtime ``` The above command will drop a shared library (Windows `.dll`, macOS `.dylib`, Linux `.so`) in `./bin/Release/net8.0/[RID]/publish/` folder and will have the same name as the folder in which your source file is present. @@ -85,6 +85,14 @@ The sample [source code](Class1.cs) demonstrates common techniques used to stay ## Building static libraries +> [!WARNING] +> It's preferred to build shared libraries than static libraries: +> +> * All code in the loadable module must be compiled with C/C++ compiler version and options that are compatible with native AOT static libraries. +> * It's also not possible to mix multiple native AOT compiled static libraries within the same loadable module. +> +> These problems don't exist when you build a shared library. + ```bash > dotnet publish /p:NativeLib=Static --use-current-runtime ``` From 05f909679b2214c0f1be46d2175671f40293ca4f Mon Sep 17 00:00:00 2001 From: Melad Kamari Date: Wed, 14 Feb 2024 20:51:13 +0330 Subject: [PATCH 85/85] Upgrade BankAccount And Adventure Sample Project (#6582) * :art: Upgrade to .net8 and add Directory.Build.props, Directory.Packages.props for manage globally pakcages and framework version * :art: Upgrade BankAccount to .net8 and add Directory.Build.props, Directory.Packages.props for manage globally Packages and framework version * :art: Upgrade Orleans.Client, Orleans.Sdk, Orleans.Server to Version 8.0.0 --- orleans/Adventure/Directory.Packages.props | 6 +++--- .../AccountTransfer.Grains.csproj | 13 ++++--------- .../AccountTransfer.Interfaces.csproj | 11 +++-------- orleans/BankAccount/BankAccount.sln | 2 ++ .../BankAccount/BankClient/BankClient.csproj | 17 ++++++----------- .../BankAccount/BankServer/BankServer.csproj | 19 +++++++------------ orleans/BankAccount/Directory.Build.props | 7 +++++++ orleans/BankAccount/Directory.Packages.props | 15 +++++++++++++++ 8 files changed, 47 insertions(+), 43 deletions(-) create mode 100644 orleans/BankAccount/Directory.Build.props create mode 100644 orleans/BankAccount/Directory.Packages.props diff --git a/orleans/Adventure/Directory.Packages.props b/orleans/Adventure/Directory.Packages.props index 050686a6b97..090fa293adb 100644 --- a/orleans/Adventure/Directory.Packages.props +++ b/orleans/Adventure/Directory.Packages.props @@ -7,8 +7,8 @@ - - - + + + diff --git a/orleans/BankAccount/AccountTransfer.Grains/AccountTransfer.Grains.csproj b/orleans/BankAccount/AccountTransfer.Grains/AccountTransfer.Grains.csproj index c03bf517ebf..665532f959c 100644 --- a/orleans/BankAccount/AccountTransfer.Grains/AccountTransfer.Grains.csproj +++ b/orleans/BankAccount/AccountTransfer.Grains/AccountTransfer.Grains.csproj @@ -1,14 +1,9 @@ - - net7.0 - enable - enable - - - + + - + - \ No newline at end of file + diff --git a/orleans/BankAccount/AccountTransfer.Interfaces/AccountTransfer.Interfaces.csproj b/orleans/BankAccount/AccountTransfer.Interfaces/AccountTransfer.Interfaces.csproj index 8f3145b3d4d..0590d7121d8 100644 --- a/orleans/BankAccount/AccountTransfer.Interfaces/AccountTransfer.Interfaces.csproj +++ b/orleans/BankAccount/AccountTransfer.Interfaces/AccountTransfer.Interfaces.csproj @@ -1,11 +1,6 @@ - - net7.0 - enable - enable - - - + + - \ No newline at end of file + diff --git a/orleans/BankAccount/BankAccount.sln b/orleans/BankAccount/BankAccount.sln index 60428d0aaa4..3d239415c80 100644 --- a/orleans/BankAccount/BankAccount.sln +++ b/orleans/BankAccount/BankAccount.sln @@ -14,6 +14,8 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3C202E56-5082-4C00-9438-E0DFAAEC9326}" ProjectSection(SolutionItems) = preProject README.md = README.md + Directory.Build.props = Directory.Build.props + Directory.Packages.props = Directory.Packages.props EndProjectSection EndProject Global diff --git a/orleans/BankAccount/BankClient/BankClient.csproj b/orleans/BankAccount/BankClient/BankClient.csproj index 1ea755f5374..b0b64843afb 100644 --- a/orleans/BankAccount/BankClient/BankClient.csproj +++ b/orleans/BankAccount/BankClient/BankClient.csproj @@ -1,19 +1,14 @@ Exe - net7.0 - enable - enable - - - - - + + + + - - + - \ No newline at end of file + diff --git a/orleans/BankAccount/BankServer/BankServer.csproj b/orleans/BankAccount/BankServer/BankServer.csproj index a27f96ab173..4619daefdd3 100644 --- a/orleans/BankAccount/BankServer/BankServer.csproj +++ b/orleans/BankAccount/BankServer/BankServer.csproj @@ -1,20 +1,15 @@ Exe - net7.0 - enable - enable - - - - - + + + + - - - + + - \ No newline at end of file + diff --git a/orleans/BankAccount/Directory.Build.props b/orleans/BankAccount/Directory.Build.props new file mode 100644 index 00000000000..24a05c5a791 --- /dev/null +++ b/orleans/BankAccount/Directory.Build.props @@ -0,0 +1,7 @@ + + + net8.0 + enable + enable + + diff --git a/orleans/BankAccount/Directory.Packages.props b/orleans/BankAccount/Directory.Packages.props new file mode 100644 index 00000000000..e6f12a8ff0a --- /dev/null +++ b/orleans/BankAccount/Directory.Packages.props @@ -0,0 +1,15 @@ + + + + true + + + + + + + + + + +