This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
feat: Start Botproject runtime in bot folder #1672
Merged
Merged
Changes from all commits
Commits
Show all changes
54 commits
Select commit
Hold shift + click to select a range
69ae226
start runtime from samplpebot csharp runtime
VanyLaw 1f3b631
fix
VanyLaw b8670c9
fix
VanyLaw 6b04384
fix
VanyLaw 1e0ca12
use logger instead of console log
VanyLaw fbf2ed7
Merge branch 'master' into wenyluo/csConnector
luhan2017 1b17984
Merge branch 'master' into wenyluo/csConnector
luhan2017 3964fd7
fix comment
VanyLaw c0f1411
fix comment
VanyLaw 0334bb8
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 306a0d2
add port usable validation and use log instead console log
VanyLaw 99a2882
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 14c4a21
fix comments
VanyLaw 4d989e6
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 543785b
move build script from template to server
VanyLaw 396e7c7
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 1cc7e70
polish output error message
VanyLaw 4336354
remove environment
VanyLaw a287f64
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw ffb617e
fix comments and add back the build script into template runtime
VanyLaw 9167b0f
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 3d67936
add migrate old bot feature
VanyLaw 6a28ec5
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 4394dc1
Merge branch 'master' into wenyluo/csConnector
luhan2017 3a76056
Merge branch 'wenyluo/csConnector' of https://github.com/microsoft/Bo…
VanyLaw 95da7fc
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 07b0120
Merge branch 'master' into wenyluo/csConnector
luhan2017 a02ee26
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 5aebd48
change docker file
VanyLaw af79c2c
remove annotation
VanyLaw 2985023
fix docker
VanyLaw 0d98187
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 019f623
simpler dockerfile
VanyLaw c7ae546
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 32ac161
Merge branch 'master' into wenyluo/csConnector
VanyLaw c05ec0d
fix dockerfile bug and port mapping
VanyLaw 7a7a2cb
add bash script for unix, and remove pwsh from docker
VanyLaw e3c2de8
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 0b0bca9
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 4e1bfb5
fix typo and some comments
VanyLaw 1090b93
split dockerfile into two
VanyLaw 0bf8040
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 861d57e
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw a791621
use nultistage instead of two dockerfile
VanyLaw 6a09761
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 3f7d035
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 9b9e139
Merge branch 'master' into wenyluo/csConnector
cwhitten 243f9c8
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw 803fe7a
update yarn lock
VanyLaw 20036eb
Merge remote-tracking branch 'origin/master' into wenyluo/csConnector
VanyLaw d4be796
Merge branch 'master' into wenyluo/csConnector
cwhitten 551c4a2
Merge branch 'master' into wenyluo/csConnector
cwhitten 6ce7143
add more debug logs
a-b-r-o-w-n 429886e
fix settings file mis-created in server folder
VanyLaw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,25 @@ | ||
| Param( | ||
| [object] $config, | ||
| [string] $customSettingFolder, | ||
| [string] $luisAuthroingKey, | ||
| [SecureString] $appPassword, | ||
| [string] $projFolder = $(Join-Path $(Get-Location) BotProject CSharp) | ||
| ) | ||
|
|
||
| if ($PSVersionTable.PSVersion.Major -lt 6){ | ||
| Write-Host "! Powershell 6 is required, current version is $($PSVersionTable.PSVersion.Major), please refer following documents for help." | ||
| Write-Host "For Windows - https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-windows?view=powershell-6" | ||
| Write-Host "For Mac - https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-macos?view=powershell-6" | ||
| Break | ||
| } | ||
|
|
||
| if ((dotnet --version) -lt 3) { | ||
| Write-Host "! dotnet core 3.0 is required, please refer following documents for help." | ||
| Write-Host "https://dotnet.microsoft.com/download/dotnet-core/3.0" | ||
| Break | ||
| } | ||
|
|
||
| # This command need dotnet core more than 3.0 | ||
| dotnet user-secrets init | ||
|
|
||
| dotnet build | ||
This file contains hidden or 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,11 @@ | ||
| versionString=`dotnet --version` | ||
| versionNum=`echo $versionString | cut -d . -f 1` | ||
| if [[ $versionNum -lt 3 ]] | ||
| then | ||
| echo "! dotnet core 3.0 is required, please refer following documents for help. | ||
| https://dotnet.microsoft.com/download/dotnet-core/3.0" | ||
| exit 1 | ||
| else | ||
| dotnet user-secrets init | ||
| dotnet build | ||
| fi |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.