├── .gitignore ├── LICENSE ├── README.md └── src ├── Demos ├── NanoProfiler.Demos.ConsoleDemo │ ├── App.config │ ├── NanoProfiler.Demos.ConsoleDemo.csproj │ ├── OwinProfilingResultHost.cs │ ├── Program.cs │ └── log4net.config └── NanoProfiler.Demos.SimpleDemo │ ├── App_Data │ ├── SimpleDemoDB.mdf │ └── SimpleDemoDB_log.ldf │ ├── AsyncHandler.ashx │ ├── AsyncHandler.ashx.cs │ ├── Code │ ├── Biz │ │ └── DemoDBService.cs │ ├── Data │ │ ├── DemoDB.dbml │ │ ├── DemoDB.dbml.layout │ │ ├── DemoDB.designer.cs │ │ ├── DemoDBDataContext.cs │ │ ├── DemoDBDataService.cs │ │ └── DemoEFDbContext.cs │ └── Models │ │ └── DemoData.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── IWcfDemoService.cs │ ├── NanoProfiler.Demos.SimpleDemo.csproj │ ├── Service References │ └── DemoService │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── WcfDemoService.wsdl │ │ ├── WcfDemoService.xsd │ │ ├── WcfDemoService1.xsd │ │ ├── configuration.svcinfo │ │ └── configuration91.svcinfo │ ├── SyncHandler.ashx │ ├── SyncHandler.ashx.cs │ ├── Unity │ ├── DeepProfilingExtension.cs │ ├── DeepProfilingInterceptionBehavior.cs │ ├── DeepProfilingInterceptionStrategy.cs │ ├── IDeepProfilingFilter.cs │ ├── PolicyInjectionProfilingCallHandler.cs │ ├── ProfiledMethodAttribute.cs │ └── RegexDeepProfilingFilter.cs │ ├── ViewProfilingLogsHandler.ashx │ ├── ViewProfilingLogsHandler.ashx.cs │ ├── ViewProfilingLogsHandler2.ashx │ ├── ViewProfilingLogsHandler2.ashx.cs │ ├── WcfDemoService.svc │ ├── WcfDemoService.svc.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── log4net.config ├── NanoProfiler.Data ├── AssemblyInfo.cs ├── DbExecuteType.cs ├── DbParameterCollectionWrapper.cs ├── DbParameterWrapper.cs ├── DbProfiler.cs ├── DbTiming.cs ├── IDbProfiler.cs ├── NanoProfiler.Data.csproj ├── ProfiledDbCommand.cs ├── ProfiledDbConnection.cs ├── ProfiledDbDataAdapter.cs ├── ProfiledDbDataReader.cs ├── ProfiledDbProviderFactory.cs └── ProfiledDbTransaction.cs ├── NanoProfiler.EF ├── AssemblyInfo.cs ├── EFProfiledDbProviderServices.cs ├── EFProfilingBootstrapper.cs └── NanoProfiler.EF.csproj ├── NanoProfiler.Storages.Json ├── AssemblyInfo.cs ├── JsonProfilingStorage.cs └── NanoProfiler.Storages.Json.csproj ├── NanoProfiler.Wcf ├── AssemblyInfo.cs ├── Configuration │ └── WcfProfilingBehaviorElement.cs ├── Description │ └── WcfProfilingBehavior.cs ├── Dispatcher │ ├── WcfProfilingDispatchMessageInspector.cs │ ├── WcfProfilingErrorHandler.cs │ ├── WcfProfilingMessageHeaderConstants.cs │ └── WcfTimingClientMessageInspector.cs ├── NanoProfiler.Wcf.csproj ├── WcfContext.cs ├── WcfProfilingSessionContainer.cs └── WcfTiming.cs ├── NanoProfiler.Web.Import ├── Handlers │ └── NanoProfilerImportModule.cs ├── ImportSerializer.cs ├── LogParsers │ ├── ElasticsearchProfilingLogParser.cs │ ├── FileProfilingLogParser.cs │ ├── IProfilingLogParser.cs │ └── ProfilingLogParserBase.cs ├── NanoProfiler.Web.Import.csproj └── Properties │ └── AssemblyInfo.cs ├── NanoProfiler.Web ├── AssemblyInfo.cs ├── Handlers │ ├── NanoProfilerModule.cs │ ├── icons.png │ └── treeview_timeline.css ├── NanoProfiler.Web.csproj ├── PreApplicationStart.cs ├── ProfilingFilters │ └── FileExtensionProfilingFilter.cs ├── WebProfilingSessionContainer.cs └── WebTiming.cs ├── NanoProfiler.snk ├── NanoProfiler.targets ├── NanoProfiler ├── AssemblyInfo.cs ├── CallContextProfilingSessionContainer.cs ├── CircularBuffer.cs ├── Configuration │ ├── ConfigurationSectionConfigurationProvider.cs │ ├── IConfigurationProvider.cs │ ├── NanoProfilerConfigurationSection.cs │ ├── ProfilingFilterElement.cs │ └── ProfilingFilterElementCollection.cs ├── ICircularBuffer.cs ├── IProfiler.cs ├── IProfilingSessionContainer.cs ├── IProfilingStep.cs ├── NanoProfiler.csproj ├── Profiler.cs ├── ProfilingFilters │ ├── DisableProfilingFilter.cs │ ├── IProfilingFilter.cs │ ├── NameContainsProfilingFilter.cs │ ├── ProfilingFilterList.cs │ └── RegexProfilingFilter.cs ├── ProfilingSession.cs ├── ProfilingSessionExtensions.cs ├── ProfilingStep.cs ├── ProfilingStepExtensions.cs ├── Storages │ ├── IProfilingStorage.cs │ ├── NoOperationProfilingStorage.cs │ └── ProfilingStorageBase.cs └── Timings │ ├── ITiming.cs │ ├── ITimingSession.cs │ ├── TagCollection.cs │ ├── Timing.cs │ └── TimingSession.cs ├── NanoProfiler2.sln └── Tests └── NanoProfiler.Tests ├── CircularBufferTest.cs ├── ConcurrencyTest.cs ├── Data ├── DbProfilerTest.cs ├── DbTimingTest.cs └── ProfiledDbCommandTest.cs ├── HttpContextMock.cs ├── ImportSerializerTest.cs ├── NanoProfiler.Tests.csproj ├── ProfilerTest.cs ├── ProfilingSessionExtensionsTest.cs ├── ProfilingSessionTest.cs ├── ProfilingStepExtensionsTest.cs ├── ProfilingStepTest.cs └── Wcf └── WcfProfilingBehaviorElementTest.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/README.md -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.ConsoleDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.ConsoleDemo/App.config -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.ConsoleDemo/NanoProfiler.Demos.ConsoleDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.ConsoleDemo/NanoProfiler.Demos.ConsoleDemo.csproj -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.ConsoleDemo/OwinProfilingResultHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.ConsoleDemo/OwinProfilingResultHost.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.ConsoleDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.ConsoleDemo/Program.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.ConsoleDemo/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.ConsoleDemo/log4net.config -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/App_Data/SimpleDemoDB.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/App_Data/SimpleDemoDB.mdf -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/App_Data/SimpleDemoDB_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/App_Data/SimpleDemoDB_log.ldf -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/AsyncHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/AsyncHandler.ashx -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/AsyncHandler.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/AsyncHandler.ashx.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Biz/DemoDBService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Biz/DemoDBService.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDB.dbml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDB.dbml -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDB.dbml.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDB.dbml.layout -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDB.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDB.designer.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDBDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDBDataContext.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDBDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoDBDataService.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoEFDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Data/DemoEFDbContext.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Models/DemoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Code/Models/DemoData.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Global.asax -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Global.asax.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/IWcfDemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/IWcfDemoService.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/NanoProfiler.Demos.SimpleDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/NanoProfiler.Demos.SimpleDemo.csproj -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/Reference.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/Reference.svcmap -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/WcfDemoService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/WcfDemoService.wsdl -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/WcfDemoService.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/WcfDemoService.xsd -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/WcfDemoService1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/WcfDemoService1.xsd -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/configuration.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/configuration.svcinfo -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/configuration91.svcinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Service References/DemoService/configuration91.svcinfo -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/SyncHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/SyncHandler.ashx -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/SyncHandler.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/SyncHandler.ashx.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/DeepProfilingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/DeepProfilingExtension.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/DeepProfilingInterceptionBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/DeepProfilingInterceptionBehavior.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/DeepProfilingInterceptionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/DeepProfilingInterceptionStrategy.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/IDeepProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/IDeepProfilingFilter.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/PolicyInjectionProfilingCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/PolicyInjectionProfilingCallHandler.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/ProfiledMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/ProfiledMethodAttribute.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/RegexDeepProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Unity/RegexDeepProfilingFilter.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler.ashx -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler.ashx.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler2.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler2.ashx -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler2.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/ViewProfilingLogsHandler2.ashx.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/WcfDemoService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/WcfDemoService.svc -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/WcfDemoService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/WcfDemoService.svc.cs -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Web.Debug.config -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Web.Release.config -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/Web.config -------------------------------------------------------------------------------- /src/Demos/NanoProfiler.Demos.SimpleDemo/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Demos/NanoProfiler.Demos.SimpleDemo/log4net.config -------------------------------------------------------------------------------- /src/NanoProfiler.Data/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/DbExecuteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/DbExecuteType.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/DbParameterCollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/DbParameterCollectionWrapper.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/DbParameterWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/DbParameterWrapper.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/DbProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/DbProfiler.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/DbTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/DbTiming.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/IDbProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/IDbProfiler.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/NanoProfiler.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/NanoProfiler.Data.csproj -------------------------------------------------------------------------------- /src/NanoProfiler.Data/ProfiledDbCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/ProfiledDbCommand.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/ProfiledDbConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/ProfiledDbConnection.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/ProfiledDbDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/ProfiledDbDataAdapter.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/ProfiledDbDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/ProfiledDbDataReader.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/ProfiledDbProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/ProfiledDbProviderFactory.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Data/ProfiledDbTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Data/ProfiledDbTransaction.cs -------------------------------------------------------------------------------- /src/NanoProfiler.EF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.EF/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler.EF/EFProfiledDbProviderServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.EF/EFProfiledDbProviderServices.cs -------------------------------------------------------------------------------- /src/NanoProfiler.EF/EFProfilingBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.EF/EFProfilingBootstrapper.cs -------------------------------------------------------------------------------- /src/NanoProfiler.EF/NanoProfiler.EF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.EF/NanoProfiler.EF.csproj -------------------------------------------------------------------------------- /src/NanoProfiler.Storages.Json/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Storages.Json/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Storages.Json/JsonProfilingStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Storages.Json/JsonProfilingStorage.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Storages.Json/NanoProfiler.Storages.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Storages.Json/NanoProfiler.Storages.Json.csproj -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/Configuration/WcfProfilingBehaviorElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/Configuration/WcfProfilingBehaviorElement.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/Description/WcfProfilingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/Description/WcfProfilingBehavior.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/Dispatcher/WcfProfilingDispatchMessageInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/Dispatcher/WcfProfilingDispatchMessageInspector.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/Dispatcher/WcfProfilingErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/Dispatcher/WcfProfilingErrorHandler.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/Dispatcher/WcfProfilingMessageHeaderConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/Dispatcher/WcfProfilingMessageHeaderConstants.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/Dispatcher/WcfTimingClientMessageInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/Dispatcher/WcfTimingClientMessageInspector.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/NanoProfiler.Wcf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/NanoProfiler.Wcf.csproj -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/WcfContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/WcfContext.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/WcfProfilingSessionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/WcfProfilingSessionContainer.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Wcf/WcfTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Wcf/WcfTiming.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/Handlers/NanoProfilerImportModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/Handlers/NanoProfilerImportModule.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/ImportSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/ImportSerializer.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/LogParsers/ElasticsearchProfilingLogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/LogParsers/ElasticsearchProfilingLogParser.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/LogParsers/FileProfilingLogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/LogParsers/FileProfilingLogParser.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/LogParsers/IProfilingLogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/LogParsers/IProfilingLogParser.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/LogParsers/ProfilingLogParserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/LogParsers/ProfilingLogParserBase.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/NanoProfiler.Web.Import.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/NanoProfiler.Web.Import.csproj -------------------------------------------------------------------------------- /src/NanoProfiler.Web.Import/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web.Import/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web/Handlers/NanoProfilerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/Handlers/NanoProfilerModule.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web/Handlers/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/Handlers/icons.png -------------------------------------------------------------------------------- /src/NanoProfiler.Web/Handlers/treeview_timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/Handlers/treeview_timeline.css -------------------------------------------------------------------------------- /src/NanoProfiler.Web/NanoProfiler.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/NanoProfiler.Web.csproj -------------------------------------------------------------------------------- /src/NanoProfiler.Web/PreApplicationStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/PreApplicationStart.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web/ProfilingFilters/FileExtensionProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/ProfilingFilters/FileExtensionProfilingFilter.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web/WebProfilingSessionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/WebProfilingSessionContainer.cs -------------------------------------------------------------------------------- /src/NanoProfiler.Web/WebTiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.Web/WebTiming.cs -------------------------------------------------------------------------------- /src/NanoProfiler.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.snk -------------------------------------------------------------------------------- /src/NanoProfiler.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler.targets -------------------------------------------------------------------------------- /src/NanoProfiler/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NanoProfiler/CallContextProfilingSessionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/CallContextProfilingSessionContainer.cs -------------------------------------------------------------------------------- /src/NanoProfiler/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/CircularBuffer.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Configuration/ConfigurationSectionConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Configuration/ConfigurationSectionConfigurationProvider.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Configuration/IConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Configuration/IConfigurationProvider.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Configuration/NanoProfilerConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Configuration/NanoProfilerConfigurationSection.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Configuration/ProfilingFilterElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Configuration/ProfilingFilterElement.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Configuration/ProfilingFilterElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Configuration/ProfilingFilterElementCollection.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ICircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ICircularBuffer.cs -------------------------------------------------------------------------------- /src/NanoProfiler/IProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/IProfiler.cs -------------------------------------------------------------------------------- /src/NanoProfiler/IProfilingSessionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/IProfilingSessionContainer.cs -------------------------------------------------------------------------------- /src/NanoProfiler/IProfilingStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/IProfilingStep.cs -------------------------------------------------------------------------------- /src/NanoProfiler/NanoProfiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/NanoProfiler.csproj -------------------------------------------------------------------------------- /src/NanoProfiler/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Profiler.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingFilters/DisableProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingFilters/DisableProfilingFilter.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingFilters/IProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingFilters/IProfilingFilter.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingFilters/NameContainsProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingFilters/NameContainsProfilingFilter.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingFilters/ProfilingFilterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingFilters/ProfilingFilterList.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingFilters/RegexProfilingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingFilters/RegexProfilingFilter.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingSession.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingSessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingSessionExtensions.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingStep.cs -------------------------------------------------------------------------------- /src/NanoProfiler/ProfilingStepExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/ProfilingStepExtensions.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Storages/IProfilingStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Storages/IProfilingStorage.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Storages/NoOperationProfilingStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Storages/NoOperationProfilingStorage.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Storages/ProfilingStorageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Storages/ProfilingStorageBase.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Timings/ITiming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Timings/ITiming.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Timings/ITimingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Timings/ITimingSession.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Timings/TagCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Timings/TagCollection.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Timings/Timing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Timings/Timing.cs -------------------------------------------------------------------------------- /src/NanoProfiler/Timings/TimingSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler/Timings/TimingSession.cs -------------------------------------------------------------------------------- /src/NanoProfiler2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/NanoProfiler2.sln -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/CircularBufferTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/CircularBufferTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ConcurrencyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ConcurrencyTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/Data/DbProfilerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/Data/DbProfilerTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/Data/DbTimingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/Data/DbTimingTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/Data/ProfiledDbCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/Data/ProfiledDbCommandTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/HttpContextMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/HttpContextMock.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ImportSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ImportSerializerTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/NanoProfiler.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/NanoProfiler.Tests.csproj -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ProfilerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ProfilerTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ProfilingSessionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ProfilingSessionExtensionsTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ProfilingSessionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ProfilingSessionTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ProfilingStepExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ProfilingStepExtensionsTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/ProfilingStepTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/ProfilingStepTest.cs -------------------------------------------------------------------------------- /src/Tests/NanoProfiler.Tests/Wcf/WcfProfilingBehaviorElementTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ef-labs/nanoprofiler/HEAD/src/Tests/NanoProfiler.Tests/Wcf/WcfProfilingBehaviorElementTest.cs --------------------------------------------------------------------------------