diff --git a/scripts/Build.ps1 b/scripts/Build.ps1 index 89cf287e31..97a01c8843 100644 --- a/scripts/Build.ps1 +++ b/scripts/Build.ps1 @@ -265,7 +265,14 @@ function Create-NugetPackages { "" > "$stagingDir\_._" # Copy over the nuspecs to the staging directory - $nuspecFiles = @("MSTest.TestAdapter.nuspec", "MSTest.TestAdapter.symbols.nuspec", "MSTest.TestFramework.nuspec", "MSTest.TestFramework.symbols.nuspec", "MSTest.Internal.TestFx.Documentation.nuspec") + $nuspecFiles = @( + "MSTest.nuspec", + "MSTest.TestAdapter.nuspec", + "MSTest.TestAdapter.symbols.nuspec", + "MSTest.TestFramework.nuspec", + "MSTest.TestFramework.symbols.nuspec", + "MSTest.Internal.TestFx.Documentation.nuspec" + ) foreach ($file in $nuspecFiles) { Copy-Item $tfSrcPackageDir\$file $stagingDir -Force diff --git a/src/Package/MSTest.nuspec b/src/Package/MSTest.nuspec new file mode 100644 index 0000000000..887efc0332 --- /dev/null +++ b/src/Package/MSTest.nuspec @@ -0,0 +1,68 @@ + + + + MSTest + 1.1.17 + MSTest + true + Microsoft + Microsoft + + A meta package to simplify test projects. + + Supported platforms: + - .NET 4.5.0+ + - .NET Core 1.0+ (Universal Windows Apps 10+) (Visual Studio 2017) + - .NET 5.0 (Visual Studio 2019) + - .NET 5.0 Windows.18362+ (WinUI Desktop Apps) (Visual Studio 2019) + - ASP.NET Core 1.0+ (Visual Studio 2017) + + https://github.com/microsoft/testfx + MIT + https://licenses.nuget.org/MIT + http://go.microsoft.com/fwlink/?LinkID=288859 + Icon.png + © Microsoft Corporation. All rights reserved. + MSTest TestFramework TestAdapter VisualStudio Unittest MSTestV2 Microsoft + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file