vs-deploy icon indicating copy to clipboard operation
vs-deploy copied to clipboard

Visual Studio Code extension that provides commands to deploy files of a workspace to a destination.

Results 60 vs-deploy issues
Sort by recently updated
recently updated
newest added

my settings.json has been working great for months. last time I used it was 16 days ago - about Nov 15, 2017. Now, when I click on the settings.json file...

I have package ` "packages": [ { "name": "Api", "description": "Deploy Api", "files": [ "../Q.API/Areas/**", "../Q.API/bin/**", "../Q.API/Content/**", "../Q.API/fonts/**", "../Q.API/Scripts/**", "../Q.API/Views/**", "../Q.API/ApplicationInsights.config", "../Q.API/Global.asax", "../Q.API/NLog.config", "../Q.API/Web.config" ] } ], ` and target...

I need to deploy the content of directory but not include the directory name itself. examples: (getting but do not want) /srv/test/server/build/...filesAndDirs (not getting but want) /srv/test/server/...filesAndDirs "deploy": { "packages":...

Hi I'm getting this error ``` Cannot read property 'syncWhenOpen' of undefined: TypeError: Cannot read property 'syncWhenOpen' of undefined at Deployer.onDidOpenTextDocument (C:\Users\xx\.vscode\extensions\mkloubert.vs-deploy-10.0.0\out\src\deploy.js:2049:57) at e.invoke (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:28:57853) at e.fire...

bug

When putting "node_modules/**" in ignore, deploying any other directory causes VSCode to hang. Is there a better way to do this? Or is it a bug?

Say for example, I would like to exclude the node_modules directory, so I put this in the exlucde list: ```node_modules/**```. But I still want to deploy a specific dir in...

``` { "deploy": { "packages": [ { "name": "Version 1.0", "description": "Website Version 1.0", "files": ["bin/Debug/netcoreapp2.0/publish/**"] } ], "targets": [ { "type": "sftp", "name": "AWS Linux", "description": "Remote Linux Server",...

Can anyone shed any light into what this error is all about, and how to resolve it? [FAILED: Error: 553 Can't open that file: No such file or directory] I...

Hello. How to perform a mysql dump and replace the lines in a file? I try "beforeDeploy" for run script (with node module): ` var mysqlDump = require('mysqldump'); exports.execute =...

help wanted

netcore has a load of larger dependencies that don't often change in my app. Does this extension do sync? eg only copy newer

help wanted