Skip to content

Commit

Permalink
Update appsettings paths to be cross platform (microsoft#918)
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenj authored Mar 5, 2019
1 parent d6fe3d0 commit 8672dd3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"botFilePath": ".\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./YOUR_BOT_PATH.bot",
"botFileSecret": "",
"defaultLocale": "en-us",
"languageModels": {
"en": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_EN_BOT_PATH.bot",
"botFileSecret": ""
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"botFilePath": ".\\CalendarSkill.bot",
"botFilePath": "./YOUR_BOT_PATH.bot",
"botFileSecret": "",
"ApplicationInsights": {
"InstrumentationKey": ""
},
"defaultLocale": "en-us",
"languageModels": {
"en": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_EN_BOT_PATH.bot",
"botFileSecret": ""
},
"zh": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_ZH_BOT_PATH.bot",
"botFileSecret": ""
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"botFilePath": ".\\EmailSkill.bot",
"botFilePath": "./YOUR_BOT_PATH.bot",
"botFileSecret": "",
"defaultLocale": "en-us",
"languageModels": {
"en": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_EN_BOT_PATH.bot",
"botFileSecret": ""
},
"zh": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_ZH_BOT_PATH.bot",
"botFileSecret": ""
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"botFilePath": ".\\PointOfInterestSkill.bot",
"botFilePath": "./YOUR_BOT_PATH.bot",
"botFileSecret": "",
"defaultLocale": "en-us",
"languageModels": {
"en": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_EN_BOT_PATH.bot",
"botFileSecret": ""
},
"zh": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_ZH_BOT_PATH.bot",
"botFileSecret": ""
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"botFilePath": ".\\ToDoSkill.bot",
"botFilePath": "./YOUR_BOT_PATH.bot",
"botFileSecret": "",
"defaultLocale": "en-us",
"languageModels": {
"en": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_EN_BOT_PATH.bot",
"botFileSecret": ""
},
"zh": {
"botFilePath": ".\\LocaleConfigurations\\YOUR_LOCALE_PATH.bot",
"botFilePath": "./LocaleConfigurations/YOUR_ZH_BOT_PATH.bot",
"botFileSecret": ""
}
},
Expand Down

0 comments on commit 8672dd3

Please sign in to comment.