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,28 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Microsoft.Testing.Platform</id>
<version>1.7.3</version>
<authors>Microsoft</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>Icon.png</icon>
<readme>PACKAGE.md</readme>
<projectUrl>https://github.com/microsoft/testfx</projectUrl>
<description>Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device.
This package provides the core platform and the .NET implementation of the protocol.</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>Microsoft test testing unittest unittesting unit-testing tdd</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/microsoft/testfx" commit="5abdae1f2e07071c4e81b27ac262f241708ec3cf" />
<dependencies>
<group targetFramework="net6.0" />
<group targetFramework="net7.0" />
<group targetFramework="net8.0" />
<group targetFramework="net9.0" />
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Microsoft.Testing.Platform</id>
<version>1.7.3</version>
<authors>Microsoft</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<icon>Icon.png</icon>
<readme>PACKAGE.md</readme>
<projectUrl>https://github.com/microsoft/testfx</projectUrl>
<description>Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device.
This package provides the core platform and the .NET implementation of the protocol.</description>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>Microsoft test testing unittest unittesting unit-testing tdd</tags>
<serviceable>true</serviceable>
<repository type="git" url="https://github.com/microsoft/testfx" commit="5abdae1f2e07071c4e81b27ac262f241708ec3cf" />
<dependencies>
<group targetFramework="net6.0" />
<group targetFramework="net7.0" />
<group targetFramework="net8.0" />
<group targetFramework="net9.0" />
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
</package>

View File

@@ -1,9 +1,9 @@
# Microsoft.Testing
Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device.
Documentation can be found at <https://aka.ms/testingplatform>.
## About
This package provides the test platform.
# Microsoft.Testing
Microsoft Testing is a set of platform, framework and protocol intended to make it possible to run any test on any target or device.
Documentation can be found at <https://aka.ms/testingplatform>.
## About
This package provides the test platform.

View File

@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<ItemGroup>
<!-- For VS Test Explorer -->
<ProjectCapability Include="TestingPlatformServer.ExitOnProcessExitCapability">
<Description>--exit-on-process-exit: Close the test process if specific process exits. Process PID must be provided.</Description>
</ProjectCapability>
<ProjectCapability Include="TestingPlatformServer.UseListTestsOptionForDiscoveryCapability">
<Description>The implementation handle the --list-tests in --server [jsonrpc] during discovery</Description>
</ProjectCapability>
</ItemGroup>
</Project>
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<ItemGroup>
<!-- For VS Test Explorer -->
<ProjectCapability Include="TestingPlatformServer.ExitOnProcessExitCapability">
<Description>--exit-on-process-exit: Close the test process if specific process exits. Process PID must be provided.</Description>
</ProjectCapability>
<ProjectCapability Include="TestingPlatformServer.UseListTestsOptionForDiscoveryCapability">
<Description>The implementation handle the --list-tests in --server [jsonrpc] during discovery</Description>
</ProjectCapability>
</ItemGroup>
</Project>

View File

@@ -1,30 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<PropertyGroup>
<!-- This is the knob to disable completely for this project the machinery -->
<IsTestingPlatformApplication Condition=" '$(IsTestingPlatformApplication)' == '' ">true</IsTestingPlatformApplication>
</PropertyGroup>
<!-- Declare our capability to Visual Studio/Visual Studio Code -->
<!-- Note: DisableTestingPlatformServerCapability or IsTestingPlatformApplication may be set by TestAdapter targets -->
<!-- While TestAdapter targets file is imported *after* this file, MSBuild evaluates properties -->
<!-- first, then items. So, we will be able to pick up the correct value here. -->
<ItemGroup Condition=" '$(DisableTestingPlatformServerCapability)' != 'true' AND '$(IsTestingPlatformApplication)' == 'true' ">
<ProjectCapability Include="TestingPlatformServer" />
<!-- Old capability expected by VS/VSCode -->
<ProjectCapability Include="TestContainer" />
</ItemGroup>
<!-- Add assembly attribute metadata for reflection usage -->
<ItemGroup>
<AssemblyMetadata Include="Microsoft.Testing.Platform.Application" Value="true" Condition=" '$(IsTestingPlatformApplication)' == 'true' " />
</ItemGroup>
<Target Name="_MTPAddArguments" BeforeTargets="ComputeRunArguments">
<PropertyGroup>
<RunArguments Condition="'(TestingPlatformCommandLineArguments)' != ''">$(RunArguments) $(TestingPlatformCommandLineArguments)</RunArguments>
</PropertyGroup>
</Target>
</Project>
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<PropertyGroup>
<!-- This is the knob to disable completely for this project the machinery -->
<IsTestingPlatformApplication Condition=" '$(IsTestingPlatformApplication)' == '' ">true</IsTestingPlatformApplication>
</PropertyGroup>
<!-- Declare our capability to Visual Studio/Visual Studio Code -->
<!-- Note: DisableTestingPlatformServerCapability or IsTestingPlatformApplication may be set by TestAdapter targets -->
<!-- While TestAdapter targets file is imported *after* this file, MSBuild evaluates properties -->
<!-- first, then items. So, we will be able to pick up the correct value here. -->
<ItemGroup Condition=" '$(DisableTestingPlatformServerCapability)' != 'true' AND '$(IsTestingPlatformApplication)' == 'true' ">
<ProjectCapability Include="TestingPlatformServer" />
<!-- Old capability expected by VS/VSCode -->
<ProjectCapability Include="TestContainer" />
</ItemGroup>
<!-- Add assembly attribute metadata for reflection usage -->
<ItemGroup>
<AssemblyMetadata Include="Microsoft.Testing.Platform.Application" Value="true" Condition=" '$(IsTestingPlatformApplication)' == 'true' " />
</ItemGroup>
<Target Name="_MTPAddArguments" BeforeTargets="ComputeRunArguments">
<PropertyGroup>
<RunArguments Condition="'(TestingPlatformCommandLineArguments)' != ''">$(RunArguments) $(TestingPlatformCommandLineArguments)</RunArguments>
</PropertyGroup>
</Target>
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
</Project>

View File

@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
</Project>