This repository has been archived by the owner on Jun 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 529
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 #3380 from microsoft/next
1.0 GA Release
- Loading branch information
Showing
3,153 changed files
with
383,022 additions
and
378,708 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
## Need Help? | ||
|
||
If you have any questions please start with [Stack Overflow](https://stackoverflow.com/questions/tagged/botframework) where we're happy to help. Please use this GitHub Repos issue tracking capability to raise [issues](https://github.com/Microsoft/AI/issues/new?assignees=&labels=Type%3A+Bug&template=bug_report.md&title=) or [feature requests](https://github.com/Microsoft/AI/issues/new?assignees=&labels=Type%3A+Suggestion&template=feature_request.md&title=). | ||
If you have any questions please start with [Stack Overflow](https://stackoverflow.com/questions/tagged/botframework) where we're happy to help. Please use this GitHub Repos issue tracking capability to raise [issues](https://github.com/microsoft/botframework-solutions/issues/new?assignees=&labels=Needs+Triage%2C+Type%3A+Bug&template=bug_report.md&title=) or [feature requests](https://github.com/microsoft/botframework-solutions/issues/new?assignees=&labels=Needs+Triage&template=feature_request.md&title=). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# specific branch build | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
- feature/* | ||
|
||
paths: | ||
include: | ||
- 'sdk/typescript/libraries/bot-solutions/*' | ||
|
||
# By default will disable PR builds | ||
pr: none | ||
|
||
pool: | ||
vmImage: 'vs2017-win2016' | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: 'Use Node 10.' | ||
inputs: | ||
versionSpec: 10.x | ||
|
||
- task: Npm@1 | ||
displayName: 'npm install' | ||
inputs: | ||
workingDir: 'sdk/typescript/libraries/bot-solutions' | ||
verbose: false | ||
|
||
- task: Npm@1 | ||
displayName: 'npm run build' | ||
inputs: | ||
command: custom | ||
workingDir: 'sdk/typescript/libraries/bot-solutions' | ||
verbose: false | ||
customCommand: 'run build' | ||
|
||
- task: Npm@1 | ||
displayName: 'npm test - coverage' | ||
inputs: | ||
command: custom | ||
workingDir: 'sdk/typescript/libraries/bot-solutions' | ||
verbose: false | ||
customCommand: 'run test-coverage-ci' | ||
|
||
- task: PublishTestResults@2 | ||
displayName: 'Publish Test Results ' | ||
inputs: | ||
testResultsFiles: 'test-results.xml' | ||
searchFolder: 'sdk/typescript/libraries/bot-solutions' | ||
failTaskOnFailedTests: true | ||
|
||
- task: PublishCodeCoverageResults@1 | ||
displayName: 'Publish code coverage ' | ||
condition: succeededOrFailed() | ||
inputs: | ||
codeCoverageTool: Cobertura | ||
summaryFileLocation: 'sdk/typescript/libraries/bot-solutions/coverage/cobertura-coverage.xml' | ||
reportDirectory: 'sdk/typescript/libraries/bot-solutions/coverage/' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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,49 @@ | ||
# specific branch build | ||
trigger: | ||
branches: | ||
include: | ||
- master | ||
- feature/* | ||
|
||
paths: | ||
include: | ||
- 'templates/typescript/generator-bot-virtualassistant/*' | ||
|
||
# By default will disable PR builds | ||
pr: none | ||
|
||
pool: | ||
name: Hosted VS2017 | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: 'Use Node 10.8.0' | ||
inputs: | ||
versionSpec: 10.8.0 | ||
|
||
- task: Npm@1 | ||
displayName: 'npm install' | ||
inputs: | ||
workingDir: 'templates/typescript/generator-bot-virtualassistant' | ||
verbose: false | ||
|
||
- task: Npm@1 | ||
displayName: 'npm test - coverage' | ||
inputs: | ||
command: custom | ||
workingDir: 'templates/typescript/generator-bot-virtualassistant' | ||
verbose: false | ||
customCommand: 'run test-coverage-ci' | ||
|
||
- task: PublishTestResults@2 | ||
displayName: 'publish test results' | ||
inputs: | ||
testResultsFiles: 'test-results.xml' | ||
searchFolder: 'templates/typescript/generator-bot-virtualassistant' | ||
failTaskOnFailedTests: true | ||
|
||
- task: PublishCodeCoverageResults@1 | ||
displayName: 'publish code coverage' | ||
inputs: | ||
codeCoverageTool: Cobertura | ||
summaryFileLocation: 'templates/typescript/generator-bot-virtualassistant/coverage/cobertura-coverage.xml' | ||
reportDirectory: 'templates/typescript/generator-bot-virtualassistant/coverage/' |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.