Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Build/package/jobs_package_vsix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,25 @@ parameters:
- name: srcDir
type: string
default: ''
- name: signType
type: string
default: 'real'

jobs:
- job: package
displayName: Build ${{ parameters.vsixName }}
timeoutInMinutes: 30
cancelTimeoutInMinutes: 1
templateContext:
mb: # Enable the MicroBuild Signing toolset
signing:
enabled: true
signType: ${{ parameters.signType }}
zipSources: false
${{ if eq(parameters.signType, 'real') }}:
signWithProd: true
featureFlags:
autoBaseline: false
outputs:
- output: pipelineArtifact
displayName: '${{ parameters.vsixName }}'
Expand Down
24 changes: 12 additions & 12 deletions Extension/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,25 @@ jobs/**
cgmanifest.json

# ignore development files
tsconfig.json
test.tsconfig.json
ui.tsconfig.json
tslint.json
.eslintignore
.eslintrc.js
webpack.config.js
tscCompileList.txt
gulpfile.js
.gitattributes
.gitignore
gulpfile.js
localized_string_ids.h
readme.developer.md
Reinstalling the Extension.md
test.tsconfig.json
translations_auto_pr.js
tsconfig.json
tslint.json
tscCompileList.txt
ui.tsconfig.json
webpack.config.js
CMakeLists.txt
debugAdapters/install.lock*
typings/**
**/*.map
import_edge_strings.js
localized_string_ids.h
translations_auto_pr.js
readme.developer.md
Reinstalling the Extension.md
*.d.ts

# ignore i18n language files
Expand Down
7 changes: 0 additions & 7 deletions ExtensionPack/CHANGELOG.md

This file was deleted.

16 changes: 16 additions & 0 deletions ExtensionPack/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ExtensionPack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"name": "Microsoft Corporation"
},
"license": "SEE LICENSE IN LICENSE.txt",
"version": "1.3.1",
"version": "1.4.0",
"engines": {
"vscode": "^1.48.0"
},
Expand Down
1 change: 0 additions & 1 deletion Themes/.gitignore

This file was deleted.

16 changes: 16 additions & 0 deletions Themes/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Themes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cpptools-themes",
"displayName": "C/C++ Themes",
"description": "UI Themes for C/C++ extension.",
"version": "2.0.0",
"version": "2.1.0",
"publisher": "ms-vscode",
"preview": false,
"icon": "assets/LanguageCCPP_color_128x.png",
Expand Down