From 8672dd3b0797913efb4877314bca328ae787592b Mon Sep 17 00:00:00 2001 From: Darren Jefford <33519520+darrenj@users.noreply.github.com> Date: Tue, 5 Mar 2019 18:38:42 +0000 Subject: [PATCH] Update appsettings paths to be cross platform (#918) --- .../skills/automotiveskill/automotiveskill/appsettings.json | 4 ++-- .../skills/calendarskill/calendarskill/appsettings.json | 6 +++--- .../csharp/skills/emailskill/emailskill/appsettings.json | 6 +++--- .../pointofinterestskill/appsettings.json | 6 +++--- .../src/csharp/skills/todoskill/todoskill/appsettings.json | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/solutions/Virtual-Assistant/src/csharp/skills/automotiveskill/automotiveskill/appsettings.json b/solutions/Virtual-Assistant/src/csharp/skills/automotiveskill/automotiveskill/appsettings.json index 621483504d..707e7f2608 100644 --- a/solutions/Virtual-Assistant/src/csharp/skills/automotiveskill/automotiveskill/appsettings.json +++ b/solutions/Virtual-Assistant/src/csharp/skills/automotiveskill/automotiveskill/appsettings.json @@ -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": "" } }, diff --git a/solutions/Virtual-Assistant/src/csharp/skills/calendarskill/calendarskill/appsettings.json b/solutions/Virtual-Assistant/src/csharp/skills/calendarskill/calendarskill/appsettings.json index a7475924bc..7345ea8aa3 100644 --- a/solutions/Virtual-Assistant/src/csharp/skills/calendarskill/calendarskill/appsettings.json +++ b/solutions/Virtual-Assistant/src/csharp/skills/calendarskill/calendarskill/appsettings.json @@ -1,5 +1,5 @@ { - "botFilePath": ".\\CalendarSkill.bot", + "botFilePath": "./YOUR_BOT_PATH.bot", "botFileSecret": "", "ApplicationInsights": { "InstrumentationKey": "" @@ -7,11 +7,11 @@ "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": "" } }, diff --git a/solutions/Virtual-Assistant/src/csharp/skills/emailskill/emailskill/appsettings.json b/solutions/Virtual-Assistant/src/csharp/skills/emailskill/emailskill/appsettings.json index 61a74cffed..2b56c7e6ad 100644 --- a/solutions/Virtual-Assistant/src/csharp/skills/emailskill/emailskill/appsettings.json +++ b/solutions/Virtual-Assistant/src/csharp/skills/emailskill/emailskill/appsettings.json @@ -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": "" } }, diff --git a/solutions/Virtual-Assistant/src/csharp/skills/pointofinterestskill/pointofinterestskill/appsettings.json b/solutions/Virtual-Assistant/src/csharp/skills/pointofinterestskill/pointofinterestskill/appsettings.json index 818bfa50e9..58ec131d89 100644 --- a/solutions/Virtual-Assistant/src/csharp/skills/pointofinterestskill/pointofinterestskill/appsettings.json +++ b/solutions/Virtual-Assistant/src/csharp/skills/pointofinterestskill/pointofinterestskill/appsettings.json @@ -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": "" } }, diff --git a/solutions/Virtual-Assistant/src/csharp/skills/todoskill/todoskill/appsettings.json b/solutions/Virtual-Assistant/src/csharp/skills/todoskill/todoskill/appsettings.json index 54008c1c06..fe85e11c71 100644 --- a/solutions/Virtual-Assistant/src/csharp/skills/todoskill/todoskill/appsettings.json +++ b/solutions/Virtual-Assistant/src/csharp/skills/todoskill/todoskill/appsettings.json @@ -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": "" } },