add offline packages
This commit is contained in:
5
offline/packages/microsoft.testing.platform/1.7.3/.nupkg.metadata
vendored
Normal file
5
offline/packages/microsoft.testing.platform/1.7.3/.nupkg.metadata
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": 2,
|
||||
"contentHash": "cI6u+CPxv3+07cbSwJVKOfxFrecbjfZnid1fe8EMhyPY4qmsSNnm+hN+GIy8u4JIlrADfrskDiwnScjRzVzJNw==",
|
||||
"source": "https://api.nuget.org/v3/index.json"
|
||||
}
|
||||
BIN
offline/packages/microsoft.testing.platform/1.7.3/.signature.p7s
vendored
Normal file
BIN
offline/packages/microsoft.testing.platform/1.7.3/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
offline/packages/microsoft.testing.platform/1.7.3/Icon.png
vendored
Normal file
BIN
offline/packages/microsoft.testing.platform/1.7.3/Icon.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.1 KiB |
28
offline/packages/microsoft.testing.platform/1.7.3/Microsoft.Testing.Platform.nuspec
vendored
Normal file
28
offline/packages/microsoft.testing.platform/1.7.3/Microsoft.Testing.Platform.nuspec
vendored
Normal file
@@ -0,0 +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>
|
||||
</package>
|
||||
9
offline/packages/microsoft.testing.platform/1.7.3/PACKAGE.md
vendored
Normal file
9
offline/packages/microsoft.testing.platform/1.7.3/PACKAGE.md
vendored
Normal file
@@ -0,0 +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.
|
||||
@@ -0,0 +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>
|
||||
@@ -0,0 +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>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Platform.targets" />
|
||||
</Project>
|
||||
6352
offline/packages/microsoft.testing.platform/1.7.3/lib/net6.0/Microsoft.Testing.Platform.xml
vendored
Normal file
6352
offline/packages/microsoft.testing.platform/1.7.3/lib/net6.0/Microsoft.Testing.Platform.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6093
offline/packages/microsoft.testing.platform/1.7.3/lib/net7.0/Microsoft.Testing.Platform.xml
vendored
Normal file
6093
offline/packages/microsoft.testing.platform/1.7.3/lib/net7.0/Microsoft.Testing.Platform.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5903
offline/packages/microsoft.testing.platform/1.7.3/lib/net8.0/Microsoft.Testing.Platform.xml
vendored
Normal file
5903
offline/packages/microsoft.testing.platform/1.7.3/lib/net8.0/Microsoft.Testing.Platform.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
5583
offline/packages/microsoft.testing.platform/1.7.3/lib/net9.0/Microsoft.Testing.Platform.xml
vendored
Normal file
5583
offline/packages/microsoft.testing.platform/1.7.3/lib/net9.0/Microsoft.Testing.Platform.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7166
offline/packages/microsoft.testing.platform/1.7.3/lib/netstandard2.0/Microsoft.Testing.Platform.xml
vendored
Normal file
7166
offline/packages/microsoft.testing.platform/1.7.3/lib/netstandard2.0/Microsoft.Testing.Platform.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
offline/packages/microsoft.testing.platform/1.7.3/microsoft.testing.platform.1.7.3.nupkg
vendored
Normal file
BIN
offline/packages/microsoft.testing.platform/1.7.3/microsoft.testing.platform.1.7.3.nupkg
vendored
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
ET191zEXexqdXcB4B5GtLvDIV3Mre7YbvQEGuEvixwIdsLSubZZJQNCsl9am/1rUpps1In9s7kIzglt5EyzQMg==
|
||||
Reference in New Issue
Block a user