-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7608 from microsoft/seanmcm/1_4_0_release
1.4.0-release
- Loading branch information
Showing
142 changed files
with
3,382 additions
and
1,871 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Enhancement Closer (no milestone) | ||
on: | ||
schedule: | ||
- cron: 50 11 * * * # Run at 11:50 AM UTC (3:50 AM PST, 4:50 AM PDT) | ||
workflow_dispatch: | ||
inputs: | ||
readonly: | ||
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" | ||
default: false | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions | ||
uses: actions/checkout@v2 | ||
- name: Install Actions | ||
run: cd ./.github/actions && npm install --production && cd ../.. | ||
- name: Stale Closer | ||
uses: ./.github/actions/StaleCloser | ||
with: | ||
readonly: ${{ github.event.inputs.readonly }} | ||
labels: enhancement | ||
ignoreLabels: debugger,internal,Feature Request | ||
addLabels: more votes needed | ||
closeDays: 60 | ||
maximumVotes: 2 | ||
closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog." | ||
setMilestoneId: 30 | ||
ignoreMilestoneNames: "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Enhancement Closer (Triage) | ||
on: | ||
schedule: | ||
- cron: 40 11 * * * # Run at 11:40 AM UTC (3:40 AM PST, 4:40 AM PDT) | ||
workflow_dispatch: | ||
inputs: | ||
readonly: | ||
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" | ||
default: false | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions | ||
uses: actions/checkout@v2 | ||
- name: Install Actions | ||
run: cd ./.github/actions && npm install --production && cd ../.. | ||
- name: Stale Closer | ||
uses: ./.github/actions/StaleCloser | ||
with: | ||
readonly: ${{ github.event.inputs.readonly }} | ||
labels: enhancement | ||
ignoreLabels: debugger,internal,Feature Request | ||
addLabels: more votes needed | ||
closeDays: 60 | ||
maximumVotes: 2 | ||
closeComment: "This feature request is being closed due to insufficient upvotes. When enough upvotes are received, this issue will be eligible for our backlog." | ||
milestoneName: Triage | ||
milestoneId: 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Enhancement Reopener | ||
on: | ||
schedule: | ||
- cron: 20 12 * * * # Run at 12:20 PM UTC (4:20 AM PST, 5:20 AM PDT) | ||
workflow_dispatch: | ||
inputs: | ||
readonly: | ||
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" | ||
default: false | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions | ||
uses: actions/checkout@v2 | ||
- name: Install Actions | ||
run: cd ./.github/actions && npm install --production && cd ../.. | ||
- name: Run Reopener | ||
uses: ./.github/actions/Reopener | ||
with: | ||
readonly: ${{ github.event.inputs.readonly }} | ||
alsoApplyToOpenIssues: true | ||
reopenComment: This feature request has received enough votes to be added to our backlog. | ||
labels: enhancement | ||
minimumVotes: 3 | ||
ignoreLabels: debugger,internal,Feature Request | ||
milestoneId: 30 | ||
milestoneName: Triage | ||
setMilestoneId: 28 | ||
removeLabels: more votes needed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"Projects": [ | ||
{ | ||
"LanguangeSet": "VS_Main_Languages", | ||
"LocItems": [ | ||
{ | ||
"SourceFile": "vscode-extensions-localization-export\\vscode-extensions\\vscode-cpptools.xlf", | ||
"Languages": "cs;de;es;fr;it;ja;ko;pl;pt-BR;ru;tr;zh-Hans;zh-Hant", | ||
"LclFile": "Build\\loc\\LCL\\{Lang}\\vscode-cpptools.xlf.lcl" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# ================================================================================== | ||
# Pipeline for VsCodeExtension-Localization build definition | ||
# Runs OneLocBuild task to localize xlf file | ||
# ================================================================================== | ||
|
||
resources: | ||
repositories: | ||
- repository: self | ||
clean: true | ||
|
||
trigger: none | ||
pr: none | ||
schedules: | ||
- cron: "0 7 * * *" | ||
displayName: Daily 7 AM | ||
branches: | ||
include: | ||
- main | ||
always: true | ||
|
||
pool: | ||
vmImage: 'windows-latest' | ||
|
||
steps: | ||
- task: CmdLine@2 | ||
inputs: | ||
script: 'cd Extension && yarn install' | ||
|
||
- task: CmdLine@2 | ||
inputs: | ||
script: 'cd ./Extension && yarn run translations-export && cd ..' | ||
|
||
- task: OneLocBuild@2 | ||
env: | ||
SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
inputs: | ||
locProj: 'Build/loc/LocProject.json' | ||
outDir: '$(Build.ArtifactStagingDirectory)' | ||
isCreatePrSelected: false | ||
prSourceBranchPrefix: 'locfiles' | ||
packageSourceAuth: 'patAuth' | ||
patVariable: '$(OneLocBuildPat)' | ||
LclSource: lclFilesfromPackage | ||
LclPackageId: 'LCL-JUNO-PROD-VCPP' | ||
lsBuildXLocPackageVersion: '7.0.30510' | ||
|
||
- task: CmdLine@2 | ||
inputs: | ||
script: 'cd Extension && node ./translations_auto_pr.js microsoft vscode-cpptools csigs $(csigsPat) csigs [email protected] "$(Build.ArtifactStagingDirectory)/loc" vscode-extensions-localization-export/vscode-extensions && cd ..' | ||
|
||
- task: PublishBuildArtifacts@1 | ||
inputs: | ||
PathtoPublish: '$(Build.ArtifactStagingDirectory)' | ||
ArtifactName: 'drop' | ||
publishLocation: 'Container' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Exception Settings | ||
|
||
The Microsoft Windows C/C++ debugger (cppvsdbg) supports configuration options for if the debugger stops when exceptions are thrown. This is done with the 'All Exceptions' check box in the BREAKPOINTS section of the 'Run and Debug' view. | ||
|
||
Note that the BREAKPOINTS section will be missing this entry until the first time that the folder has been debugged with the 'cppvsdbg' debugger. | ||
|
||
Checking 'All Exceptions' will configure the debugger to stop when an exception is thrown. | ||
|
||
##### Exception Conditions | ||
|
||
The 'All Exceptions' checkbox support conditions to break on only selected exception types (C++ exceptions) or codes (Win32 exceptions). To edit the condition, click on the pencil icon or right click on the entry and invoke 'Edit Condition'. The condition is a comma-separated list of exception types and codes to break on, or if the list starts with '!', a list of exception types and codes to ignore. | ||
|
||
Examples conditions: | ||
|
||
| Example condition value | Result | | ||
|-------------------------|--------| | ||
| 0xC0000005, 0xC0000094 | Break on Win32 Access Violation exceptions and integer division by zero exceptions | | ||
| std::out_of_range, 0xC0000005 | This will break on out-of-range exceptions, and access violation exceptions | | ||
| !MyExceptionClass | This will break on all exceptions except C++ `MyExceptionClass` exceptions | | ||
| !MyExceptionClass, 0x6831C815 | This will break on all exceptions except C++ `MyExceptionClass` exceptions and Win32 exceptions with custom code 0x6831C815 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.