-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Emit Signal method and delegate to provide a hook into events * Update Az.Accounts dependency to 1.8.4 * Adding target attribute to nuspec file elements * Using backslash path separator in nuspec for cross platform compatability * Remove Init method constructor call. * Revert "Emit Signal method and delegate to provide a hook into events" * Emit Signal method and delegate to provide hook into events for Non-Azure scenarios. * Update ISendAsync.cs (#662) * Update ISendAsync.cs pass only Authorization to next header for long running operations. * Update ISendAsync.cs * Update ISendAsync.cs fix potential null reference * Update ISendAsync.cs * Update ISendAsync.cs * Update ISendAsync.cs * update gitignore (#670) * Add scan pipelines (#681) * Update development.md - add how to debug (#683) * Update development.md * Update development.md * Fix some merging issues Co-authored-by: George Ndungu <[email protected]> Co-authored-by: Tim Mullender <[email protected]> Co-authored-by: Yabo Hu <[email protected]> Co-authored-by: Yeming Liu <[email protected]> Co-authored-by: Dingmeng Xue <[email protected]>
- Loading branch information
1 parent
ac262b1
commit ce56adb
Showing
92 changed files
with
2,332 additions
and
2,021 deletions.
There are no files selected for viewing
Empty file.
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,50 @@ | ||
# Please don't use ADO UI defined scheduled triggers because it takes precedence over YAML scheduled triggers. | ||
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/scheduled-triggers | ||
schedules: | ||
- cron: "0 0 * * *" | ||
displayName: Daily Midnight Build | ||
branches: | ||
include: | ||
- master | ||
|
||
trigger: none | ||
pr: none | ||
|
||
pool: | ||
name: Hosted VS2017 | ||
demands: npm | ||
|
||
steps: | ||
- task: NodeTool@0 | ||
displayName: 'Use Node 10.16.0' | ||
inputs: | ||
versionSpec: 10.16.0 | ||
|
||
- task: Npm@1 | ||
displayName: 'Install autorest@beta' | ||
inputs: | ||
command: custom | ||
verbose: false | ||
customCommand: 'install -g "@autorest/autorest"' | ||
|
||
- task: Npm@1 | ||
displayName: 'Install @microsoft/rush' | ||
inputs: | ||
command: custom | ||
verbose: false | ||
customCommand: 'install -g @microsoft/[email protected]' | ||
|
||
- task: CmdLine@2 | ||
displayName: 'Rush sync-versions' | ||
inputs: | ||
script: 'rush sync-versions' | ||
|
||
- task: CmdLine@2 | ||
displayName: 'Rush Update' | ||
inputs: | ||
script: 'rush update' | ||
|
||
- task: CmdLine@2 | ||
displayName: 'Rush Rebuild' | ||
inputs: | ||
script: 'rush rebuild' |
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,15 @@ | ||
trigger: | ||
branches: | ||
include: | ||
- '*' | ||
|
||
pool: | ||
vmImage: "windows-2019" | ||
|
||
steps: | ||
- task: ms-codeanalysis.vss-microsoft-security-code-analysis-devops.build-task-credscan.CredScan@2 | ||
displayName: 'Run CredScan' | ||
continueOnError: true | ||
inputs: | ||
toolMajorVersion: "V2" | ||
suppressionsFile: .azure-pipelines\credscan-suppressions.json |
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
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ obj | |
generated | ||
internal | ||
exports | ||
tools | ||
custom/*.psm1 | ||
test/*-TestResults.xml | ||
/*.ps1 | ||
|
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
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.