Skip to content

Commit eb11303

Browse files
committed
Moves everything around to make things work correctly
1 parent 6316431 commit eb11303

File tree

11 files changed

+8
-8
lines changed

11 files changed

+8
-8
lines changed

cscfg-transform/images/icon.png

11.1 KB
Loading
File renamed without changes.
File renamed without changes.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Transforms Azure Cloud Service cscfg files",
55
"main": "index.js",
66
"scripts": {
7-
"test": "tsc && mocha ./buildAndReleaseTask/tests/_suite.js",
7+
"test": "tsc && mocha ./tests/_suite.js",
88
"package": "tsc && tfx extension create --manifest-globs vss-extension.json"
99
},
1010
"keywords": [

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
],
1414
"version": {
1515
"Major": 0,
16-
"Minor": 1,
17-
"Patch": 1
16+
"Minor": 2,
17+
"Patch": 0
1818
},
1919
"instanceNameFormat": "Transform cscfg $(targetFilePath)",
2020
"inputs": [
File renamed without changes.
File renamed without changes.

vss-extension.json renamed to cscfg-transform/vss-extension.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifestVersion": 1,
33
"id": "cscfg-transform",
44
"name": "Azure Cloud Services Config Variable Transform",
5-
"version": "0.1.1",
5+
"version": "0.2.0",
66
"publisher": "rezStream",
77
"targets": [
88
{
@@ -14,22 +14,22 @@
1414
"Azure Pipelines"
1515
],
1616
"icons": {
17-
"default": "images/extension-icon.png"
17+
"default": "images/icon.png"
1818
},
1919
"files": [
2020
{
21-
"path": "buildAndReleaseTask"
21+
"path": "./"
2222
}
2323
],
2424
"contributions": [
2525
{
26-
"id": "custom-build-release-task",
26+
"id": "cscfg-transform",
2727
"type": "ms.vss-distributed-task.task",
2828
"targets": [
2929
"ms.vss-distributed-task.tasks"
3030
],
3131
"properties": {
32-
"name": "buildAndReleaseTask"
32+
"name": "cscfg-transform"
3333
}
3434
}
3535
]

0 commit comments

Comments
 (0)