Skip to content

Commit e293d85

Browse files
committed
Fixes the packaging
1 parent dc9f120 commit e293d85

14 files changed

+57
-30
lines changed

build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Push-Location .\cscfg-transform
1+
Push-Location .\cscfg-settings
22
npm install
33
tsc
44
Pop-Location
5+
tfx extension create --manifest-globs .\cscfg-settings-extension.json
56

67
Push-Location .\cscfg-vnetsite
78
npm install
89
tsc
910
Pop-Location
10-
11-
tfx extension create --manifest-globs vss-extension.json
11+
tfx extension create --manifest-globs .\cscfg-vnetsite-extension.json

cscfg-settings-extension.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"manifestVersion": 1,
3+
"id": "cscfg-settings",
4+
"name": "Update Azure Cloud Service CS Config Settings",
5+
"version": "0.4.1",
6+
"publisher": "rezStream",
7+
"targets": [
8+
{
9+
"id": "Microsoft.VisualStudio.Services"
10+
}
11+
],
12+
"description": "Updates Azure Cloud Service CS Config Settings.",
13+
"categories": [
14+
"Azure Pipelines"
15+
],
16+
"icons": {
17+
"default": "images/icon.png"
18+
},
19+
"files": [
20+
{
21+
"path": "cscfg-settings"
22+
}
23+
],
24+
"contributions": [
25+
{
26+
"id": "cscfg-settings",
27+
"type": "ms.vss-distributed-task.task",
28+
"targets": [
29+
"ms.vss-distributed-task.tasks"
30+
],
31+
"properties": {
32+
"name": "cscfg-settings"
33+
}
34+
}
35+
]
36+
}
File renamed without changes.
File renamed without changes.

cscfg-transform/package-lock.json renamed to cscfg-settings/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cscfg-transform/package.json renamed to cscfg-settings/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "cscfg-transform-task",
2+
"name": "cscfg-settings",
33
"version": "0.0.1",
4-
"description": "Transforms Azure Cloud Service cscfg files",
4+
"description": "Transforms Azure Cloud Service CS Config",
55
"main": "index.js",
66
"scripts": {
77
"test": "tsc && mocha ./tests/_suite.js"

cscfg-transform/task.json renamed to cscfg-settings/task.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/Microsoft/azure-pipelines-task-lib/master/tasks.schema.json",
3-
"id": "ed1c80dd-0444-415a-9a79-4cbd0251e8f2",
4-
"name": "cscfg-transform",
5-
"friendlyName": "Azure Cloud Services Config Variable Transform",
6-
"description": "Transforms Azure Cloud Service cscfg variables.",
3+
"id": "64fcfa03-9fdf-43a5-87f5-b038f78d5580",
4+
"name": "cscfg-settings",
5+
"friendlyName": "Azure Cloud Services Config Settings",
6+
"description": "Updates Azure Cloud Service CS Config Settings.",
77
"helpMarkDown": "",
88
"category": "Utility",
99
"author": "rezStream",
@@ -16,15 +16,15 @@
1616
"Minor": 2,
1717
"Patch": 3
1818
},
19-
"instanceNameFormat": "Transform CS Config Variables $(targetFilePath)",
19+
"instanceNameFormat": "Update CS Config Settings $(targetFilePath)",
2020
"inputs": [
2121
{
2222
"name": "targetFilePath",
2323
"type": "filePath",
2424
"label": "File path",
2525
"defaultValue": "",
2626
"required": true,
27-
"helpMarkDown": "The cscfg file to apply variable transforms to"
27+
"helpMarkDown": "The cscfg file needing settings updates"
2828
}
2929
],
3030
"execution": {
File renamed without changes.

0 commit comments

Comments
 (0)