File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ azure-pipelines
24
24
25
25
.editorconfig
26
26
.gitignore
27
+ CODEOWNERS
27
28
gulpfile.ts
28
29
! install.Lock
29
30
ISSUE_TEMPLATE
@@ -35,6 +36,7 @@ package-lock.json
35
36
package.json
36
37
tsconfig.json
37
38
tslint.json
39
+ version.json
38
40
wallaby.js
39
41
webpack.config.js
40
42
Original file line number Diff line number Diff line change 8
8
inputs :
9
9
versionSpec : ' 16.x'
10
10
11
+ - task : UseDotNet@2
12
+
13
+ # Set the CI build number to the VSIX version we're creating from this build.
14
+ - script : |
15
+ dotnet tool install --tool-path $(Agent.BuildDirectory) nbgv
16
+ $(Agent.BuildDirectory)/nbgv cloud
17
+
11
18
- script : |
12
19
npm ci
13
20
npm i -g gulp
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 2.0-beta"
2
+ "$schema" : " https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json" ,
3
+ "version" : " 2.0-beta" ,
4
+ "publicReleaseRefSpec" : [
5
+ " ^refs/heads/release$"
6
+ ],
7
+ "cloudBuild" : {
8
+ "buildNumber" : {
9
+ "enabled" : false
10
+ }
11
+ }
3
12
}
You can’t perform that action at this time.
0 commit comments