From 3f7613d08525b441e3d46e6fa1928c5f178944a1 Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Mon, 8 Jan 2018 11:21:13 -0800 Subject: [PATCH 1/2] copy third party notices to module folder --- PowerShellEditorServices.build.ps1 | 3 +++ .../Third Party Notices.txt | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 module/PowerShellEditorServices/Third Party Notices.txt diff --git a/PowerShellEditorServices.build.ps1 b/PowerShellEditorServices.build.ps1 index 635536fc8..4dc22fc64 100644 --- a/PowerShellEditorServices.build.ps1 +++ b/PowerShellEditorServices.build.ps1 @@ -197,6 +197,9 @@ task LayoutModule -After Build { Copy-Item -Force -Path $PSScriptRoot\src\PowerShellEditorServices.Host\bin\$Configuration\net451\UnixConsoleEcho.dll -Destination $PSScriptRoot\module\PowerShellEditorServices\bin\Desktop\ } + # Copy Third Party Notices.txt to module folder + Copy-Item -Force -Path "$PSScriptRoot\Third Party Notices.txt" -Destination $PSScriptRoot\module\PowerShellEditorServices + # Lay out the PowerShellEditorServices.VSCode module's binaries New-Item -Force $PSScriptRoot\module\PowerShellEditorServices.VSCode\bin\ -Type Directory | Out-Null New-Item -Force $PSScriptRoot\module\PowerShellEditorServices.VSCode\bin\Desktop -Type Directory | Out-Null diff --git a/module/PowerShellEditorServices/Third Party Notices.txt b/module/PowerShellEditorServices/Third Party Notices.txt new file mode 100644 index 000000000..fcbd12a6e --- /dev/null +++ b/module/PowerShellEditorServices/Third Party Notices.txt @@ -0,0 +1,16 @@ +This file is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Microsoft product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. + +--- + +UnixConsoleEcho + +Copyright (c) 2017 Patrick Meinecke + Provided for Informational Purposes Only + +MIT License + +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. From 9d78e548cfb0927d3afd3611c842e8a0a478cdc0 Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Mon, 8 Jan 2018 11:49:44 -0800 Subject: [PATCH 2/2] add third party notices to gitignore --- .gitignore | 3 +++ .../Third Party Notices.txt | 16 ---------------- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 module/PowerShellEditorServices/Third Party Notices.txt diff --git a/.gitignore b/.gitignore index 6743796d8..99073998e 100644 --- a/.gitignore +++ b/.gitignore @@ -63,5 +63,8 @@ PowerShellEditorServices.sln.ide/storage.ide # Don't include PlatyPS generated MAML module/PowerShellEditorServices/Commands/en-US/*-help.xml +# Don't include Third Party Notices in module folder +module/PowerShellEditorServices/Third\ Party\ Notices.txt + # Visual Studio for Mac generated file *.userprefs \ No newline at end of file diff --git a/module/PowerShellEditorServices/Third Party Notices.txt b/module/PowerShellEditorServices/Third Party Notices.txt deleted file mode 100644 index fcbd12a6e..000000000 --- a/module/PowerShellEditorServices/Third Party Notices.txt +++ /dev/null @@ -1,16 +0,0 @@ -This file is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Microsoft product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise. - ---- - -UnixConsoleEcho - -Copyright (c) 2017 Patrick Meinecke - Provided for Informational Purposes Only - -MIT License - -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.