Skip to content

Commit

Permalink
Merge pull request #12 from Microsoft/akamath46297/messagefixes
Browse files Browse the repository at this point in the history
Updated the pgtoolsservice version and path
  • Loading branch information
akamath46297 authored Mar 18, 2019
2 parents 27910d8 + 4662898 commit fb3b246
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/configurations/dev.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"service": {
"downloadUrl": "https://pgtoolservice.file.core.windows.net/download/pgsqltoolsservice-{#fileName#}?{#token#}",
"version": "1.2.0-alpha.22",
"downloadUrl": "https://github.com/Microsoft/pgtoolsservice/releases/download/{#version#}/pgsqltoolsservice-{#fileName#}",
"version": "v1.0.0",
"downloadFileNames": {
"Windows_64": "win-x64.zip",
"Windows_86": "win-x86.zip",
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/production.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"service": {
"downloadUrl": "http://dtnuget:8080/download/pgtoolsservice/{#version#}/pgsqltoolsservice-{#fileName#}",
"version": "1.2.0-alpha.22",
"downloadUrl": "https://github.com/Microsoft/pgtoolsservice/releases/download/{#version#}/pgsqltoolsservice-{#fileName#}",
"version": "v1.0.0",
"downloadFileNames": {
"Windows_64": "win-x64.zip",
"Windows_86": "win-x86.zip",
Expand Down
3 changes: 1 addition & 2 deletions tasks/packagetasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,8 @@ gulp.task('package:offline', () => {

var packages = [];
packages.push({rid: 'win-x64', runtime: Runtime.Windows_64});
packages.push({rid: 'win-x86', runtime: Runtime.Windows_86});
packages.push({rid: 'osx', runtime: Runtime.OSX});
packages.push({rid: 'linux-x64', runtime: Runtime.Linux_64});
packages.push({rid: 'linux-x64', runtime: Runtime.Linux_86});

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

0 comments on commit fb3b246

Please sign in to comment.