Skip to content

Commit 689eac7

Browse files
Merge pull request #43951 from dotnet/main
Merge main into live
2 parents 98e4811 + 3075c78 commit 689eac7

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ jobs:
7171

7272
# Upload the results to GitHub's code scanning dashboard.
7373
- name: "Upload to code-scanning"
74-
uses: github/codeql-action/upload-sarif@aa578102511db1f4524ed59b8cc2bae4f6e88195 # v3.27.6
74+
uses: github/codeql-action/upload-sarif@babb554ede22fd5605947329c4d04d8e7a0b8155 # v3.27.7
7575
with:
7676
sarif_file: results.sarif

docs/ai/how-to/snippets/semantic-kernel/semantic-kernel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0" />
1616
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.0" />
1717
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0" />
18-
<PackageReference Include="Microsoft.SemanticKernel" Version="1.31.0" />
18+
<PackageReference Include="Microsoft.SemanticKernel" Version="1.32.0" />
1919
<PackageReference Include="Microsoft.SemanticKernel.Connectors.AzureAISearch" Version="1.9.0-alpha" />
2020
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Redis" Version="1.9.0-alpha" />
2121
<PackageReference Include="Microsoft.SemanticKernel.Plugins.Memory" Version="1.9.0-alpha" />

docs/ai/tutorials/snippets/llm-eval/llm-eval.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<ItemGroup>
1313
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0" />
1414
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0" />
15-
<PackageReference Include="Microsoft.SemanticKernel" Version="1.31.0" />
15+
<PackageReference Include="Microsoft.SemanticKernel" Version="1.32.0" />
1616
</ItemGroup>
1717

1818
</Project>

docs/core/diagnostics/snippets/OTLP-Example/csharp/OTLP-Example.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.10.0" />
1212
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.10.0" />
1313
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0" />
14-
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.0" />
14+
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.1" />
1515
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.10.0" />
1616
</ItemGroup>
1717

docs/core/diagnostics/snippets/OTel-Prometheus-Grafana-Jaeger/csharp/OTel-Prometheus-Grafana-Jaeger.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageReference Include="OpenTelemetry.Exporter.Prometheus.AspNetCore" Version="1.9.0-beta.2" />
1919
<PackageReference Include="OpenTelemetry.Exporter.Zipkin" Version="1.10.0" />
2020
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.10.0" />
21-
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.0" />
21+
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.10.1" />
2222
</ItemGroup>
2323
<!--</Snippet_References>-->
2424
<!--<Snippet_AZMReferences>-->

docs/core/testing/unit-testing-platform-exit-codes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ ms.topic: reference
2626
| `10` | The exit code `10` indicates that the test adapter, Testing.Platform Test Framework, MSTest, NUnit, or xUnit, failed to run tests for an infrastructure reason unrelated to the test's self. An example is failing to create a fixture needed by tests. |
2727
| `11` | The exit code `11` indicates that the test process will exit if dependent process exits. |
2828
| `12` | The exit code `12` indicates that the test session was unable to run because the client does not support any of the supported protocol versions. |
29+
| `13` | The exit code `13` indicates that the test session was stopped due to reaching the specified number of maximum failed tests using `--maximum-failed-tests` command-line option. For more information, see [the Options section in Microsoft.Testing.Platform overview](unit-testing-platform-intro.md#options) |
2930

3031
To enable verbose logging and troubleshoot issues, see [Microsoft.Testing.Platform Diagnostics extensions](unit-testing-platform-extensions-diagnostics.md#built-in-options).
3132

docs/core/testing/unit-testing-platform-intro.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,13 @@ The list below described only the platform options. To see the specific options
261261

262262
List available tests. Tests will not be executed.
263263

264+
- **`--maximum-failed-tests`**
265+
266+
Specifies the maximum number of tests failures that, when reached, will stop the test run. Support for this switch requires framework authors to implement the `IGracefulStopTestExecutionCapability` capability. The exit code when reaching that amount of test failures is 13. For more information, see [Microsoft.Testing.Platform exit codes](unit-testing-platform-exit-codes.md).
267+
268+
> [!NOTE]
269+
> This feature is available in Microsoft.Testing.Platform starting with version 1.5.
270+
264271
- **`--minimum-expected-tests`**
265272

266273
Specifies the minimum number of tests that are expected to run. By default, at least one test is expected to run.

0 commit comments

Comments
 (0)