Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 8444157

Browse files
authored
Merge pull request #3380 from microsoft/next
1.0 GA Release
2 parents 55f4904 + edb2679 commit 8444157

File tree

3,153 files changed

+383022
-378708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,153 files changed

+383022
-378708
lines changed

.github/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Need Help?
22

3-
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=).
3+
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=).

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ FakesAssemblies/
262262
.ntvs_analysis.dat
263263
/solutions/**/node_modules/
264264
/templates/**/node_modules/
265-
/lib/**/node_modules/
265+
/sdk/**/node_modules/
266266
/tools/**/node_modules/
267267
/skills/**/node_modules/
268268
/samples/**/node_modules/
@@ -359,6 +359,8 @@ ASALocalRun/
359359
**/remove_skill_log.txt
360360
**/publish_log.txt
361361
**/.deployment
362+
**/ComposerDialogs/generated
363+
**/ComposerDialogs/settings
362364

363365
# Zip files
364366
*.7z

build/build.botbuilder-libs.ts.ps1

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Param(
33
)
44

55
if (-not $version) {
6-
Write-Host "Version for botbuilder-libs required!. Please use the param -version" -ForegroundColor DarkRed
6+
Write-Host "Version for bot-libs required!. Please use the param -version" -ForegroundColor DarkRed
77
}
88

99
pushd sdk\typescript\libraries
@@ -12,14 +12,7 @@ node .\common\scripts\install-run-rush.js install --no-link
1212

1313
node .\common\scripts\install-run-rush.js link
1414

15-
pushd .\botbuilder-solutions
16-
17-
npm version $($version) --allow-same-version
18-
npm run build
19-
20-
popd
21-
22-
pushd .\botbuilder-skills
15+
pushd .\bot-solutions
2316

2417
npm version $($version) --allow-same-version
2518
npm run build
@@ -35,7 +28,6 @@ if (-not(test-path ".\outputpackages"))
3528

3629
pushd .\outputpackages
3730

38-
npm pack ..\sdk\typescript\libraries\botbuilder-solutions
39-
npm pack ..\sdk\typescript\libraries\botbuilder-skills
31+
npm pack ..\sdk\typescript\libraries\bot-solutions
4032

4133
popd

build/build.generator-assistant.ts.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Param(
33
)
44

55
if (-not $version) {
6-
Write-Host "Version for generator-botbuilder-assistant required!. Please use the param -version" -ForegroundColor DarkRed
6+
Write-Host "Version for generator-bot-virtualassistant required!. Please use the param -version" -ForegroundColor DarkRed
77
}
88

9-
pushd templates/typescript/generator-botbuilder-assistant
9+
pushd templates/typescript/generator-bot-virtualassistant
1010

1111
npm install
1212
npm version $($version) --allow-same-version
@@ -21,6 +21,6 @@ if (-not(test-path ".\outputpackages"))
2121

2222
pushd .\outputpackages
2323

24-
npm pack ..\templates\typescript\generator-botbuilder-assistant
24+
npm pack ..\templates\typescript\generator-bot-virtualassistant
2525

2626
popd
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# specific branch build
2+
trigger:
3+
branches:
4+
include:
5+
- master
6+
- feature/*
7+
8+
paths:
9+
include:
10+
- 'sdk/typescript/libraries/bot-solutions/*'
11+
12+
# By default will disable PR builds
13+
pr: none
14+
15+
pool:
16+
vmImage: 'vs2017-win2016'
17+
steps:
18+
- task: NodeTool@0
19+
displayName: 'Use Node 10.'
20+
inputs:
21+
versionSpec: 10.x
22+
23+
- task: Npm@1
24+
displayName: 'npm install'
25+
inputs:
26+
workingDir: 'sdk/typescript/libraries/bot-solutions'
27+
verbose: false
28+
29+
- task: Npm@1
30+
displayName: 'npm run build'
31+
inputs:
32+
command: custom
33+
workingDir: 'sdk/typescript/libraries/bot-solutions'
34+
verbose: false
35+
customCommand: 'run build'
36+
37+
- task: Npm@1
38+
displayName: 'npm test - coverage'
39+
inputs:
40+
command: custom
41+
workingDir: 'sdk/typescript/libraries/bot-solutions'
42+
verbose: false
43+
customCommand: 'run test-coverage-ci'
44+
45+
- task: PublishTestResults@2
46+
displayName: 'Publish Test Results '
47+
inputs:
48+
testResultsFiles: 'test-results.xml'
49+
searchFolder: 'sdk/typescript/libraries/bot-solutions'
50+
failTaskOnFailedTests: true
51+
52+
- task: PublishCodeCoverageResults@1
53+
displayName: 'Publish code coverage '
54+
condition: succeededOrFailed()
55+
inputs:
56+
codeCoverageTool: Cobertura
57+
summaryFileLocation: 'sdk/typescript/libraries/bot-solutions/coverage/cobertura-coverage.xml'
58+
reportDirectory: 'sdk/typescript/libraries/bot-solutions/coverage/'

build/yaml/typescript/botbuilder-skills.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.

build/yaml/typescript/botbuilder-solutions.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# specific branch build
2+
trigger:
3+
branches:
4+
include:
5+
- master
6+
- feature/*
7+
8+
paths:
9+
include:
10+
- 'templates/typescript/generator-bot-virtualassistant/*'
11+
12+
# By default will disable PR builds
13+
pr: none
14+
15+
pool:
16+
name: Hosted VS2017
17+
steps:
18+
- task: NodeTool@0
19+
displayName: 'Use Node 10.8.0'
20+
inputs:
21+
versionSpec: 10.8.0
22+
23+
- task: Npm@1
24+
displayName: 'npm install'
25+
inputs:
26+
workingDir: 'templates/typescript/generator-bot-virtualassistant'
27+
verbose: false
28+
29+
- task: Npm@1
30+
displayName: 'npm test - coverage'
31+
inputs:
32+
command: custom
33+
workingDir: 'templates/typescript/generator-bot-virtualassistant'
34+
verbose: false
35+
customCommand: 'run test-coverage-ci'
36+
37+
- task: PublishTestResults@2
38+
displayName: 'publish test results'
39+
inputs:
40+
testResultsFiles: 'test-results.xml'
41+
searchFolder: 'templates/typescript/generator-bot-virtualassistant'
42+
failTaskOnFailedTests: true
43+
44+
- task: PublishCodeCoverageResults@1
45+
displayName: 'publish code coverage'
46+
inputs:
47+
codeCoverageTool: Cobertura
48+
summaryFileLocation: 'templates/typescript/generator-bot-virtualassistant/coverage/cobertura-coverage.xml'
49+
reportDirectory: 'templates/typescript/generator-bot-virtualassistant/coverage/'

build/yaml/typescript/generator-botbuilder-assistant.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)