Skip to content

Commit

Permalink
Updated the TPN and name for extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Anup Kamath committed Mar 14, 2019
1 parent 789355e commit ad27a3d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
22 changes: 21 additions & 1 deletion ThirdPartyNotices.txt
Expand Up @@ -17,7 +17,7 @@ extent required to debug changes to any libraries licensed under the GNU Lesser
General Public License.


1. sqlops-pgsql: https://github.com/Microsoft/sqlops-pgsql
1. azuredatastudio-postgresql: https://github.com/Microsoft/azuredatastudio-postgresql

Copyright (c) Microsoft Corporation. All rights reserved.
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:
Expand Down Expand Up @@ -201,3 +201,23 @@ The above copyright notice and this permission notice shall be included in all c

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.


22. readable-stream v2.3.0: https://www.npmjs.com/package/readable-stream
Node.js is licensed for use as follows:
Copyright Node.js contributors. All rights reserved.
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.

This license applies to parts of Node.js originating from the https://github.com/joyent/node repository:

Copyright Joyent, Inc. and other Node contributors. All rights reserved.

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.

5 changes: 3 additions & 2 deletions package.json
@@ -1,12 +1,12 @@
{
"name": "azuredatastudio-pgsql",
"name": "postgresql",
"version": "0.1.0",
"publisher": "Microsoft",
"description": "PostgreSQL extension for Azure Data Studio",
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
"icon": "images/extension-icon.png",
"repository": {
"url": "https://github.com/Microsoft/sqlops-pgsql"
"url": "https://github.com/Microsoft/azuredatastudio-postgresql"
},
"license": "MIT",
"activationEvents": [
Expand All @@ -23,6 +23,7 @@
"scripts": {
"compile": "gulp build",
"package": "gulp package:online",
"package-offline": "gulp package:offline",
"postinstall": "node ./node_modules/vscode/bin/install && node ./node_modules/sqlops/bin/install"
},
"contributes": {
Expand Down
2 changes: 1 addition & 1 deletion tasks/packagetasks.js
Expand Up @@ -86,7 +86,7 @@ gulp.task('package:offline', () => {
var packages = [];
packages.push({rid: 'win-x64', runtime: 'Windows_64'});
packages.push({rid: 'osx', runtime: 'OSX'});
packages.push({rid: 'linux-x64', runtime: 'Linux_64'});
packages.push({rid: 'linux', runtime: 'Ubuntu_16'});

var promise = Promise.resolve();
cleanServiceInstallFolder().then(() => {
Expand Down

0 comments on commit ad27a3d

Please sign in to comment.