-
Notifications
You must be signed in to change notification settings - Fork 287
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
Enable ILogger provider for apps targetting .NET Framework #1312
Comments
apps targetting any .net framework dont get the new ilogger yet. |
Change here: https://github.com/microsoft/ApplicationInsights-dotnet/blob/develop/LOGGING/src/ILogger/ILogger.csproj#L3 and make sure everything builds |
SInce msft.extension.logging is only targetting netstandard2.0, we need to target net461 (or net472) in ilogger to consume it. This means aspnetcore project (which targets net45, net46) should additionally target net461 (or net472) - and enable auto ilogger integration for netstandard20 and net461(or net472). |
2.14.0-beta5 should have this. |
This (microsoft/ApplicationInsights-aspnetcore#853) enables ilogger by default for NETSTANDARD20. The project also targets NET46, and we need to ensure that apps targeting .net framework also should be able to use this change.
The text was updated successfully, but these errors were encountered: