diff --git a/scripts/build.ps1 b/scripts/build.ps1
index 70774a6140..b3febb6803 100644
--- a/scripts/build.ps1
+++ b/scripts/build.ps1
@@ -293,8 +293,9 @@ function Create-NugetPackages
Copy-Item $tpSrcDir\$file $stagingDir -Force
}
- # Copy over empty file
- Copy-Item -Recurse $tpSrcDir\package\"_._" $stagingDir -Force
+ # Copy over empty and third patry notice file
+ Copy-Item $tpSrcDir\package\"_._" $stagingDir -Force
+ Copy-Item $tpSrcDir\package\"ThirdPartyNotices.txt" $stagingDir -Force
# Call nuget pack on these components.
$nugetExe = Join-Path $env:TP_PACKAGES_DIR -ChildPath "Nuget.CommandLine" | Join-Path -ChildPath $env:NUGET_EXE_Version | Join-Path -ChildPath "tools\NuGet.exe"
diff --git a/src/Microsoft.NET.Test.Sdk.nuspec b/src/Microsoft.NET.Test.Sdk.nuspec
index de19d58753..4faf1f6606 100644
--- a/src/Microsoft.NET.Test.Sdk.nuspec
+++ b/src/Microsoft.NET.Test.Sdk.nuspec
@@ -6,9 +6,12 @@
Microsoft.NET.Test.Sdk
Microsoft
Microsoft
- false
+ true
+ http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm
+ http://go.microsoft.com/fwlink/?LinkID=288859
The MSbuild targets and properties for building the .Net core test projects.
- Copyright 2015
+ © Microsoft Corporation. All rights reserved.
+ https://github.com/microsoft/vstest/
diff --git a/src/TestPlatform.Build.nuspec b/src/TestPlatform.Build.nuspec
index 4bf866d40d..ccf2cb1d89 100644
--- a/src/TestPlatform.Build.nuspec
+++ b/src/TestPlatform.Build.nuspec
@@ -10,7 +10,8 @@
Build tasks and targets for running tests with Test Platform
http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm
http://go.microsoft.com/fwlink/?LinkID=288859
- Copyright © Microsoft Corporation
+ https://github.com/microsoft/vstest/
+ © Microsoft Corporation. All rights reserved.
diff --git a/src/TestPlatform.CLI.nuspec b/src/TestPlatform.CLI.nuspec
index 09401919d3..7172fddb7a 100644
--- a/src/TestPlatform.CLI.nuspec
+++ b/src/TestPlatform.CLI.nuspec
@@ -10,12 +10,16 @@
The cross platform Microsoft Test Platform.
http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm
http://go.microsoft.com/fwlink/?LinkID=288859
- Copyright © Microsoft Corporation
+ https://github.com/microsoft/vstest/
+ © Microsoft Corporation. All rights reserved.
+
+
+
\ No newline at end of file
diff --git a/src/TestPlatform.ObjectModel.nuspec b/src/TestPlatform.ObjectModel.nuspec
index 689dde42af..3bda062304 100644
--- a/src/TestPlatform.ObjectModel.nuspec
+++ b/src/TestPlatform.ObjectModel.nuspec
@@ -10,7 +10,8 @@
The Microsoft Test Platform Object Model.
http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm
http://go.microsoft.com/fwlink/?LinkID=288859
- Copyright © Microsoft Corporation
+ https://github.com/microsoft/vstest/
+ © Microsoft Corporation. All rights reserved.
diff --git a/src/TestPlatform.TestHost.nuspec b/src/TestPlatform.TestHost.nuspec
index 6f3c72a2f2..32ab54bcad 100644
--- a/src/TestPlatform.TestHost.nuspec
+++ b/src/TestPlatform.TestHost.nuspec
@@ -10,7 +10,8 @@
Testplatform host executes the test using specified adapter.
http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm
http://go.microsoft.com/fwlink/?LinkID=288859
- Copyright © Microsoft Corporation
+ https://github.com/microsoft/vstest/
+ © Microsoft Corporation. All rights reserved.
@@ -21,6 +22,8 @@
+
+
diff --git a/src/package/ThirdPartyNotices.txt b/src/package/ThirdPartyNotices.txt
new file mode 100644
index 0000000000..e61c1bc1a4
--- /dev/null
+++ b/src/package/ThirdPartyNotices.txt
@@ -0,0 +1,35 @@
+VSTest
+
+THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
+Do Not Translate or Localize
+
+This software incorporates components from the projects listed below. The original copyright notices
+and the licenses under which Microsoft received such components are set forth below and are provided for
+informational purposes only. Microsoft reserves all rights not expressly granted herein, whether by
+implication, estoppel or otherwise.
+
+1. Newtonsoft version 8.0.3 and 9.0.1 (https://github.com/JamesNK/Newtonsoft.Json)
+
+
+
+%% Newtonsoft NOTICES AND INFORMATION BEGIN HERE
+=========================================
+The MIT License (MIT)
+
+Copyright (c) 2007 James Newton-King
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
+associated documentation files (the "Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial
+portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
+EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
+THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+=========================================
+END OF Newtonsoft NOTICES AND INFORMATION