Settings for Zip glob patterns

This commit is contained in:
Jay Wang 2017-12-13 14:47:33 -08:00 коммит произвёл GitHub
Родитель 34e0357473 d52911031d
Коммит 1215930b67
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -323,6 +323,16 @@
"All"
],
"description": "%azFunc.templateFilterDescription%"
},
"azureFunctions.zipGlobPattern": {
"type": "string",
"default": "**/*",
"description": "Defines which files in the workspace to deploy. This applies to Zip deploy only, has no effect on other deployment methods."
},
"azureFunctions.zipIgnorePattern": {
"type": "string",
"default": "",
"description": "Defines which files in the workspace to ignore for Zip deploy. This applies to Zip deploy only, has no effect on other deployment methods."
}
}
}
@ -359,7 +369,7 @@
"ms-rest": "^2.2.2",
"ms-rest-azure": "^2.3.1",
"request-promise": "^4.2.2",
"vscode-azureappservice": "~0.7.2",
"vscode-azureappservice": "~0.8.0",
"vscode-azureextensionui": "~0.3.1",
"vscode-extension-telemetry": "^0.0.6",
"vscode-nls": "^2.0.2",

Просмотреть файл

@ -44,7 +44,7 @@ export async function deploy(telemetryProperties: { [key: string]: string; }, tr
await verifyBetaRuntime(outputChannel, client, siteWrapper);
}
await siteWrapper.deploy(folderPath, client, outputChannel);
await siteWrapper.deploy(folderPath, client, outputChannel, 'azureFunctions');
}
async function getJavaFolderPath(outputChannel: vscode.OutputChannel, basePath: string, ui: IUserInterface): Promise<string> {