-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: [draft] add TelemetryLoggerMiddleware to runtime #2423
Conversation
@@ -42,11 +42,6 @@ public static void Main(string[] args) | |||
builder.AddJsonFile("appsettings.deployment.json", optional: true, reloadOnChange: true); | |||
} | |||
|
|||
if (!env.IsDevelopment()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you removing this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you removing this?
currently we don't have an user secret inside the botruntime, app password and luis authoring key are stored in file(appsettings)
@@ -31,6 +31,7 @@ | |||
<PackageReference Include="Microsoft.Bot.Builder.Integration.ApplicationInsights.Core" Version="4.8.0" /> | |||
<PackageReference Include="Microsoft.Bot.Builder.Integration.AspNet.Core" Version="4.8.0" /> | |||
<PackageReference Include="Microsoft.Bot.Builder.Dialogs" Version="4.8.0" /> | |||
<PackageReference Include="Microsoft.Bot.Builder.StreamingExtensions" Version="4.6.0-preview-191021-1" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this a 4.6.0 preview package? shouldn't it be 4.8.0?
Description
Task Item
Screenshots