-
Notifications
You must be signed in to change notification settings - Fork 49
.NET Standard TraceListener logging #166
.NET Standard TraceListener logging #166
Conversation
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.
Please address feedback
src/TraceListener/AssemblyInfo.cs
Outdated
@@ -31,6 +31,7 @@ | |||
[assembly: Guid("3aada9bf-fc15-42fd-ace5-4cb2f11c1f2a")] | |||
|
|||
[assembly: InternalsVisibleTo("Microsoft.ApplicationInsights.TraceListener.Net45.Tests, PublicKey=" + AssemblyInfo.PublicKey)] | |||
[assembly: InternalsVisibleTo("Microsoft.ApplicationInsights.TraceListener.Tests, PublicKey=" + AssemblyInfo.PublicKey)] |
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.
maybe have netcoreapp10
in the name of test assembly?
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.
Done
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\TraceListener.Net45.Tests\ApplicationInsightsTraceFilterTests.cs" Link="ApplicationInsightsTraceFilterTests.cs" /> |
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.
moving thos to the folder with the name Shared can make folders structure cleaner. Can you do it please?
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.
Done
Ready to merge (I don't have permission myself) |
Add a .NET Standard version of the TraceListener logging package so that it can be used in .NET Core applications.