├── EnlistmentRoot.marker ├── LOGGING ├── .gitattributes ├── .gitignore ├── 35MSSharedLib1024.snk ├── AddXmlLanguage.targets ├── ApplicationInsightsSDKRules.ruleset ├── CHANGELOG.md ├── CodeCov.ps1 ├── Common.props ├── Common.targets ├── Directory.Build.props ├── GenerateReleaseMetadata.ps1 ├── GlobalStaticVersion.props ├── HelloWorldTest │ ├── HelloWorld.Tests.csproj │ ├── README.md │ ├── UnitTest1.cs │ └── packages.config ├── LICENSE ├── Logging.sln ├── Microsoft-Security-Recommended.ruleset ├── NuGet.Config ├── NuGet.exe ├── NugetAudit.ps1 ├── Nupkg.props ├── PushNugetPackages.cmd ├── README.md ├── SDL │ ├── BinSkimSetup.ps1 │ └── FxCopSetup.ps1 ├── Signing.targets ├── SourceRoot.marker ├── Test.props ├── ThirdPartyNotices.txt ├── VSOPushNugetPackages.cmd ├── buildDebug.cmd ├── buildRelease.cmd ├── clean.cmd ├── dirs.proj ├── disablestrongnamevalidation.ps1 ├── enablestrongnamevalidation.ps1 ├── src │ ├── CommonShared │ │ ├── CommonShared.projitems │ │ ├── CommonShared.shproj │ │ └── SdkVersionUtils.cs │ ├── DiagnosticSourceListener │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ ├── DeclaredPropertiesCache.cs │ │ ├── DiagnosticSourceListener.csproj │ │ ├── DiagnosticSourceListenerSubscription.cs │ │ ├── DiagnosticSourceListeningRequest.cs │ │ └── DiagnosticSourceTelemetryModule.cs │ ├── EtwCollector │ │ ├── AITraceEventSession.cs │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ ├── EtwCollector.csproj │ │ ├── EtwListeningRequest.cs │ │ ├── EtwTelemetryModule.cs │ │ ├── ITraceEventSession.cs │ │ ├── Implemenetation │ │ │ └── TraceEventExtensions.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── EventSource.Shared │ │ └── EventSource.Shared │ │ │ ├── EventSource.Shared.projitems │ │ │ ├── EventSource.Shared.shproj │ │ │ ├── Implementation │ │ │ └── EventSourceListenerEventSource.cs │ │ │ └── Utilities │ │ │ ├── ActivityPathDecoder.cs │ │ │ ├── StringBuilderCache.cs │ │ │ └── TplActivities.cs │ ├── EventSourceListener │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ ├── DisableEventSourceRequest.cs │ │ ├── EventSourceListener.csproj │ │ ├── EventSourceListeningRequest.cs │ │ ├── EventSourceListeningRequestBase.cs │ │ ├── EventSourceTelemetryModule.cs │ │ ├── Implementation │ │ │ └── EventDataExtensions.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── ILogger │ │ ├── ApplicationInsightsLogger.cs │ │ ├── ApplicationInsightsLoggerOptions.cs │ │ ├── ApplicationInsightsLoggerProvider.cs │ │ ├── ApplicationInsightsLoggingBuilderExtensions.cs │ │ ├── ILogger.csproj │ │ ├── NullScope.cs │ │ └── Readme.md │ ├── Log4NetAppender │ │ ├── ApplicationInsightsAppender.cs │ │ ├── AssemblyInfo.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Log4NetAppender.csproj │ │ ├── app.config.install.xdt │ │ ├── app.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt │ ├── NLogTarget │ │ ├── ApplicationInsightsTarget.cs │ │ ├── AssemblyInfo.cs │ │ ├── NLogTarget.csproj │ │ ├── TargetPropertyWithContext.cs │ │ ├── app.config.install.xdt │ │ ├── app.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt │ ├── Product.props │ └── TraceListener │ │ ├── ApplicationInsightsTraceListener.cs │ │ ├── AssemblyInfo.cs │ │ ├── TraceListener.csproj │ │ ├── app.config.install.xdt │ │ ├── app.config.uninstall.xdt │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt └── test │ ├── CommonTestShared │ ├── CommonTestShared.projitems │ ├── CommonTestShared.shproj │ ├── SdkVersionHelper.cs │ └── TelemetrySender.cs │ ├── DiagnosticSourceListener.netcoreapp10.Tests │ ├── DiagnosticSourceListener.netcoreapp1.Tests.csproj │ ├── DiagnosticSourceTelemetryModuleTests.cs │ └── TestDiagnosticSource.cs │ ├── EtwCollector.Net451.Tests │ ├── EtwCollector.Net451.Tests.csproj │ ├── EtwTelemetryModuleTests.cs │ ├── EventSourceModuleDiagnosticListener.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestProvider.cs │ ├── TraceEventSessionMock.cs │ └── TraceTelemetryComparer.cs │ ├── EventSourceListener.netcoreapp10.Tests │ ├── EventSourceListener.netcoreapp10.Tests.csproj │ ├── EventSourceModuleDiagnosticListener.cs │ ├── EventSourceTelemetryModuleTests.cs │ ├── OtherTestEventSource.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestEventSource.cs │ └── TraceTelemetryComparer.cs │ ├── ILogger.NetStandard.Tests │ ├── ILogger.NetStandard.Tests.csproj │ ├── ILoggerIntegrationTests.cs │ └── TestTelemetryProcessor.cs │ ├── Log4NetAppender.Net45.Tests │ ├── ApplicationInsightsAppenderTests.cs │ ├── GlobalSuppressions.cs │ ├── Log4NetAppender.Net45.Tests.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ ├── Log4NetAppender.NetCoreApp10.Tests │ └── Log4NetAppender.NetCoreApp10.Tests.csproj │ ├── NLogTarget.Net45.Tests │ ├── NLogTarget.Net45.Tests.csproj │ ├── NLogTargetTests.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── NLogTarget.NetCoreApp10.Tests │ └── NLogTarget.NetCoreApp10.Tests.csproj │ ├── Shared │ ├── AdapterHelper.cs │ ├── Adapters.Shared.Tests.projitems │ ├── Adapters.Shared.Tests.shproj │ ├── ApplicationInsightsTraceFilterTests.cs │ ├── ApplicationInsightsTraceListenerTests.cs │ ├── CustomTelemetryChannel.cs │ └── ExceptionAssert.cs │ ├── TraceListener.Net45.Tests │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TraceEventOptionsMatrix.xml │ ├── TraceFilterMatrix.xml │ └── TraceListener.Net45.Tests.csproj │ ├── TraceListener.netcoreapp10.Tests │ └── TraceListener.netcoreapp10.Tests.csproj │ └── Xdt.Tests │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resources │ ├── DiagnosticSourceListener │ │ └── TestDataSet.xml │ ├── EtwCollector │ │ └── TestDataSet.xml │ ├── EventSourceListener │ │ └── TestDataSet.xml │ ├── Log4Net │ │ └── TestDataSet.xml │ ├── NLog │ │ └── TestDataSet.xml │ └── TraceListener │ │ └── TestDataSet.xml │ ├── Xdt.Tests.csproj │ └── XdtTests.cs └── README.md /EnlistmentRoot.marker: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LOGGING/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/.gitattributes -------------------------------------------------------------------------------- /LOGGING/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/.gitignore -------------------------------------------------------------------------------- /LOGGING/35MSSharedLib1024.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/35MSSharedLib1024.snk -------------------------------------------------------------------------------- /LOGGING/AddXmlLanguage.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/AddXmlLanguage.targets -------------------------------------------------------------------------------- /LOGGING/ApplicationInsightsSDKRules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/ApplicationInsightsSDKRules.ruleset -------------------------------------------------------------------------------- /LOGGING/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/CHANGELOG.md -------------------------------------------------------------------------------- /LOGGING/CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/CodeCov.ps1 -------------------------------------------------------------------------------- /LOGGING/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Common.props -------------------------------------------------------------------------------- /LOGGING/Common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Common.targets -------------------------------------------------------------------------------- /LOGGING/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Directory.Build.props -------------------------------------------------------------------------------- /LOGGING/GenerateReleaseMetadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/GenerateReleaseMetadata.ps1 -------------------------------------------------------------------------------- /LOGGING/GlobalStaticVersion.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/GlobalStaticVersion.props -------------------------------------------------------------------------------- /LOGGING/HelloWorldTest/HelloWorld.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/HelloWorldTest/HelloWorld.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/HelloWorldTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/HelloWorldTest/README.md -------------------------------------------------------------------------------- /LOGGING/HelloWorldTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/HelloWorldTest/UnitTest1.cs -------------------------------------------------------------------------------- /LOGGING/HelloWorldTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/HelloWorldTest/packages.config -------------------------------------------------------------------------------- /LOGGING/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/LICENSE -------------------------------------------------------------------------------- /LOGGING/Logging.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Logging.sln -------------------------------------------------------------------------------- /LOGGING/Microsoft-Security-Recommended.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Microsoft-Security-Recommended.ruleset -------------------------------------------------------------------------------- /LOGGING/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/NuGet.Config -------------------------------------------------------------------------------- /LOGGING/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/NuGet.exe -------------------------------------------------------------------------------- /LOGGING/NugetAudit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/NugetAudit.ps1 -------------------------------------------------------------------------------- /LOGGING/Nupkg.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Nupkg.props -------------------------------------------------------------------------------- /LOGGING/PushNugetPackages.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/PushNugetPackages.cmd -------------------------------------------------------------------------------- /LOGGING/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/README.md -------------------------------------------------------------------------------- /LOGGING/SDL/BinSkimSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/SDL/BinSkimSetup.ps1 -------------------------------------------------------------------------------- /LOGGING/SDL/FxCopSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/SDL/FxCopSetup.ps1 -------------------------------------------------------------------------------- /LOGGING/Signing.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Signing.targets -------------------------------------------------------------------------------- /LOGGING/SourceRoot.marker: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LOGGING/Test.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/Test.props -------------------------------------------------------------------------------- /LOGGING/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /LOGGING/VSOPushNugetPackages.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/VSOPushNugetPackages.cmd -------------------------------------------------------------------------------- /LOGGING/buildDebug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/buildDebug.cmd -------------------------------------------------------------------------------- /LOGGING/buildRelease.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/buildRelease.cmd -------------------------------------------------------------------------------- /LOGGING/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/clean.cmd -------------------------------------------------------------------------------- /LOGGING/dirs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/dirs.proj -------------------------------------------------------------------------------- /LOGGING/disablestrongnamevalidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/disablestrongnamevalidation.ps1 -------------------------------------------------------------------------------- /LOGGING/enablestrongnamevalidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/enablestrongnamevalidation.ps1 -------------------------------------------------------------------------------- /LOGGING/src/CommonShared/CommonShared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/CommonShared/CommonShared.projitems -------------------------------------------------------------------------------- /LOGGING/src/CommonShared/CommonShared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/CommonShared/CommonShared.shproj -------------------------------------------------------------------------------- /LOGGING/src/CommonShared/SdkVersionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/CommonShared/SdkVersionUtils.cs -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/DeclaredPropertiesCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/DeclaredPropertiesCache.cs -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/DiagnosticSourceListener.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/DiagnosticSourceListener.csproj -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/DiagnosticSourceListenerSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/DiagnosticSourceListenerSubscription.cs -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/DiagnosticSourceListeningRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/DiagnosticSourceListeningRequest.cs -------------------------------------------------------------------------------- /LOGGING/src/DiagnosticSourceListener/DiagnosticSourceTelemetryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/DiagnosticSourceListener/DiagnosticSourceTelemetryModule.cs -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/AITraceEventSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/AITraceEventSession.cs -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/EtwCollector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/EtwCollector.csproj -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/EtwListeningRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/EtwListeningRequest.cs -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/EtwTelemetryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/EtwTelemetryModule.cs -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/ITraceEventSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/ITraceEventSession.cs -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/Implemenetation/TraceEventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/Implemenetation/TraceEventExtensions.cs -------------------------------------------------------------------------------- /LOGGING/src/EtwCollector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EtwCollector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSource.Shared/EventSource.Shared/EventSource.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSource.Shared/EventSource.Shared/EventSource.Shared.projitems -------------------------------------------------------------------------------- /LOGGING/src/EventSource.Shared/EventSource.Shared/EventSource.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSource.Shared/EventSource.Shared/EventSource.Shared.shproj -------------------------------------------------------------------------------- /LOGGING/src/EventSource.Shared/EventSource.Shared/Implementation/EventSourceListenerEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSource.Shared/EventSource.Shared/Implementation/EventSourceListenerEventSource.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSource.Shared/EventSource.Shared/Utilities/ActivityPathDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSource.Shared/EventSource.Shared/Utilities/ActivityPathDecoder.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSource.Shared/EventSource.Shared/Utilities/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSource.Shared/EventSource.Shared/Utilities/StringBuilderCache.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSource.Shared/EventSource.Shared/Utilities/TplActivities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSource.Shared/EventSource.Shared/Utilities/TplActivities.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/DisableEventSourceRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/DisableEventSourceRequest.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/EventSourceListener.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/EventSourceListener.csproj -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/EventSourceListeningRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/EventSourceListeningRequest.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/EventSourceListeningRequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/EventSourceListeningRequestBase.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/EventSourceTelemetryModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/EventSourceTelemetryModule.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/Implementation/EventDataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/Implementation/EventDataExtensions.cs -------------------------------------------------------------------------------- /LOGGING/src/EventSourceListener/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/EventSourceListener/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/src/ILogger/ApplicationInsightsLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/ApplicationInsightsLogger.cs -------------------------------------------------------------------------------- /LOGGING/src/ILogger/ApplicationInsightsLoggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/ApplicationInsightsLoggerOptions.cs -------------------------------------------------------------------------------- /LOGGING/src/ILogger/ApplicationInsightsLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/ApplicationInsightsLoggerProvider.cs -------------------------------------------------------------------------------- /LOGGING/src/ILogger/ApplicationInsightsLoggingBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/ApplicationInsightsLoggingBuilderExtensions.cs -------------------------------------------------------------------------------- /LOGGING/src/ILogger/ILogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/ILogger.csproj -------------------------------------------------------------------------------- /LOGGING/src/ILogger/NullScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/NullScope.cs -------------------------------------------------------------------------------- /LOGGING/src/ILogger/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/ILogger/Readme.md -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/ApplicationInsightsAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/ApplicationInsightsAppender.cs -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/GlobalSuppressions.cs -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/Log4NetAppender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/Log4NetAppender.csproj -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/app.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/app.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/web.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/Log4NetAppender/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Log4NetAppender/web.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/ApplicationInsightsTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/ApplicationInsightsTarget.cs -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/NLogTarget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/NLogTarget.csproj -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/TargetPropertyWithContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/TargetPropertyWithContext.cs -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/app.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/app.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/web.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/NLogTarget/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/NLogTarget/web.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/Product.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/Product.props -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/ApplicationInsightsTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/ApplicationInsightsTraceListener.cs -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/TraceListener.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/TraceListener.csproj -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/app.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/app.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/web.config.install.xdt -------------------------------------------------------------------------------- /LOGGING/src/TraceListener/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/src/TraceListener/web.config.uninstall.xdt -------------------------------------------------------------------------------- /LOGGING/test/CommonTestShared/CommonTestShared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/CommonTestShared/CommonTestShared.projitems -------------------------------------------------------------------------------- /LOGGING/test/CommonTestShared/CommonTestShared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/CommonTestShared/CommonTestShared.shproj -------------------------------------------------------------------------------- /LOGGING/test/CommonTestShared/SdkVersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/CommonTestShared/SdkVersionHelper.cs -------------------------------------------------------------------------------- /LOGGING/test/CommonTestShared/TelemetrySender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/CommonTestShared/TelemetrySender.cs -------------------------------------------------------------------------------- /LOGGING/test/DiagnosticSourceListener.netcoreapp10.Tests/DiagnosticSourceListener.netcoreapp1.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/DiagnosticSourceListener.netcoreapp10.Tests/DiagnosticSourceListener.netcoreapp1.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/DiagnosticSourceListener.netcoreapp10.Tests/DiagnosticSourceTelemetryModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/DiagnosticSourceListener.netcoreapp10.Tests/DiagnosticSourceTelemetryModuleTests.cs -------------------------------------------------------------------------------- /LOGGING/test/DiagnosticSourceListener.netcoreapp10.Tests/TestDiagnosticSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/DiagnosticSourceListener.netcoreapp10.Tests/TestDiagnosticSource.cs -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/EtwCollector.Net451.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/EtwCollector.Net451.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/EtwTelemetryModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/EtwTelemetryModuleTests.cs -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/EventSourceModuleDiagnosticListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/EventSourceModuleDiagnosticListener.cs -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/TestProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/TestProvider.cs -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/TraceEventSessionMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/TraceEventSessionMock.cs -------------------------------------------------------------------------------- /LOGGING/test/EtwCollector.Net451.Tests/TraceTelemetryComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EtwCollector.Net451.Tests/TraceTelemetryComparer.cs -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/EventSourceListener.netcoreapp10.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/EventSourceListener.netcoreapp10.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/EventSourceModuleDiagnosticListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/EventSourceModuleDiagnosticListener.cs -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/EventSourceTelemetryModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/EventSourceTelemetryModuleTests.cs -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/OtherTestEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/OtherTestEventSource.cs -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/TestEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/TestEventSource.cs -------------------------------------------------------------------------------- /LOGGING/test/EventSourceListener.netcoreapp10.Tests/TraceTelemetryComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/EventSourceListener.netcoreapp10.Tests/TraceTelemetryComparer.cs -------------------------------------------------------------------------------- /LOGGING/test/ILogger.NetStandard.Tests/ILogger.NetStandard.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/ILogger.NetStandard.Tests/ILogger.NetStandard.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/ILogger.NetStandard.Tests/ILoggerIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/ILogger.NetStandard.Tests/ILoggerIntegrationTests.cs -------------------------------------------------------------------------------- /LOGGING/test/ILogger.NetStandard.Tests/TestTelemetryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/ILogger.NetStandard.Tests/TestTelemetryProcessor.cs -------------------------------------------------------------------------------- /LOGGING/test/Log4NetAppender.Net45.Tests/ApplicationInsightsAppenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Log4NetAppender.Net45.Tests/ApplicationInsightsAppenderTests.cs -------------------------------------------------------------------------------- /LOGGING/test/Log4NetAppender.Net45.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Log4NetAppender.Net45.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /LOGGING/test/Log4NetAppender.Net45.Tests/Log4NetAppender.Net45.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Log4NetAppender.Net45.Tests/Log4NetAppender.Net45.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/Log4NetAppender.Net45.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Log4NetAppender.Net45.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/test/Log4NetAppender.NetCoreApp10.Tests/Log4NetAppender.NetCoreApp10.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Log4NetAppender.NetCoreApp10.Tests/Log4NetAppender.NetCoreApp10.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/NLogTarget.Net45.Tests/NLogTarget.Net45.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/NLogTarget.Net45.Tests/NLogTarget.Net45.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/NLogTarget.Net45.Tests/NLogTargetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/NLogTarget.Net45.Tests/NLogTargetTests.cs -------------------------------------------------------------------------------- /LOGGING/test/NLogTarget.Net45.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/NLogTarget.Net45.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/test/NLogTarget.NetCoreApp10.Tests/NLogTarget.NetCoreApp10.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/NLogTarget.NetCoreApp10.Tests/NLogTarget.NetCoreApp10.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/Shared/AdapterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/AdapterHelper.cs -------------------------------------------------------------------------------- /LOGGING/test/Shared/Adapters.Shared.Tests.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/Adapters.Shared.Tests.projitems -------------------------------------------------------------------------------- /LOGGING/test/Shared/Adapters.Shared.Tests.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/Adapters.Shared.Tests.shproj -------------------------------------------------------------------------------- /LOGGING/test/Shared/ApplicationInsightsTraceFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/ApplicationInsightsTraceFilterTests.cs -------------------------------------------------------------------------------- /LOGGING/test/Shared/ApplicationInsightsTraceListenerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/ApplicationInsightsTraceListenerTests.cs -------------------------------------------------------------------------------- /LOGGING/test/Shared/CustomTelemetryChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/CustomTelemetryChannel.cs -------------------------------------------------------------------------------- /LOGGING/test/Shared/ExceptionAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Shared/ExceptionAssert.cs -------------------------------------------------------------------------------- /LOGGING/test/TraceListener.Net45.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/TraceListener.Net45.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/test/TraceListener.Net45.Tests/TraceEventOptionsMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/TraceListener.Net45.Tests/TraceEventOptionsMatrix.xml -------------------------------------------------------------------------------- /LOGGING/test/TraceListener.Net45.Tests/TraceFilterMatrix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/TraceListener.Net45.Tests/TraceFilterMatrix.xml -------------------------------------------------------------------------------- /LOGGING/test/TraceListener.Net45.Tests/TraceListener.Net45.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/TraceListener.Net45.Tests/TraceListener.Net45.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/TraceListener.netcoreapp10.Tests/TraceListener.netcoreapp10.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/TraceListener.netcoreapp10.Tests/TraceListener.netcoreapp10.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Resources/DiagnosticSourceListener/TestDataSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Resources/DiagnosticSourceListener/TestDataSet.xml -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Resources/EtwCollector/TestDataSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Resources/EtwCollector/TestDataSet.xml -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Resources/EventSourceListener/TestDataSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Resources/EventSourceListener/TestDataSet.xml -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Resources/Log4Net/TestDataSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Resources/Log4Net/TestDataSet.xml -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Resources/NLog/TestDataSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Resources/NLog/TestDataSet.xml -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Resources/TraceListener/TestDataSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Resources/TraceListener/TestDataSet.xml -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/Xdt.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/Xdt.Tests.csproj -------------------------------------------------------------------------------- /LOGGING/test/Xdt.Tests/XdtTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/LOGGING/test/Xdt.Tests/XdtTests.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-dotnet-logging/HEAD/README.md --------------------------------------------------------------------------------