update of local deps cache

This commit is contained in:
master
2025-11-21 06:52:58 +00:00
parent 79b8e53441
commit ca35db9ef4
786 changed files with 1749002 additions and 1740601 deletions

View File

@@ -1,147 +1,147 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Testing.Extensions.TrxReport.Abstractions</name>
</assembly>
<members>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability">
<summary>
This capability is used to indicate whether or not the test framework supports trx report generation.
By supporting trx generation, the test adapter should ensure that some required properties are available
for all the nodes.
We expect these properties in the node bag:
- 1 <c>trxreport.classname</c>
- 0..n <c>trxreport.testcategory</c>
And, in case of exception, the following extra properties:
- <c>trxreport.exceptionmessage</c>
- <c>trxreport.exceptionstacktrace</c>.
</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.IsSupported">
<summary>
Gets a value indicating whether indicates if the test framework supports trx report properties enrichment.
</summary>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.ITrxReportCapability.Enable">
<summary>
Notifies the test framework that the trx report is enabled and trx report properties should be added to the test nodes.
</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.#ctor(System.String,System.String)">
<summary>
Represents an exception to report in the TRX file.
</summary>
<param name="Message">The exception message.</param>
<param name="StackTrace">The exception stack trace.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.Message">
<summary>The exception message.</summary>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxExceptionProperty.StackTrace">
<summary>The exception stack trace.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.#ctor(System.String)">
<summary>
A property that represents the fully qualified type name to be reported in the TRX file.
</summary>
<param name="FullyQualifiedTypeName">The fully qualified type name.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxFullyQualifiedTypeNameProperty.FullyQualifiedTypeName">
<summary>The fully qualified type name.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.#ctor(System.String)">
<summary>
A property that represents a message to be reported in the TRX file.
</summary>
<param name="Message">The message.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage.Message">
<summary>The message.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardErrorTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard error message to be reported in the TRX file.
</summary>
<param name="Message">The standard error message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.StandardOutputTrxMessage.#ctor(System.String)">
<summary>
A property that represents the standard output message to be reported in the TRX file.
</summary>
<param name="Message">The standard output message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.DebugOrTraceTrxMessage.#ctor(System.String)">
<summary>
A property that represents a debug or trace message to be reported in the TRX file.
</summary>
<param name="Message">The debug or trace message.</param>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.#ctor(Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessage[])">
<summary>
A property that represents the messages to be reported in the TRX file.
</summary>
<param name="Messages">The TRX message properties.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxMessagesProperty.Messages">
<summary>The TRX message properties.</summary>
</member>
<member name="T:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="M:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.#ctor(System.String[])">
<summary>
A property that represents the categories to be reported in the TRX file.
</summary>
<param name="Categories">The categories.</param>
</member>
<member name="P:Microsoft.Testing.Extensions.TrxReport.Abstractions.TrxCategoriesProperty.Categories">
<summary>The categories.</summary>
</member>
</members>
</doc>