├── .gitignore ├── .sbtrc ├── LICENSE ├── agent └── src │ ├── main │ └── java │ │ └── com │ │ └── codedx │ │ └── codepulse │ │ └── agent │ │ ├── TraceAgent.java │ │ ├── agent │ │ └── DefaultTraceAgent.java │ │ ├── control │ │ ├── ConfigurationHandler.java │ │ ├── ConfigurationReader.java │ │ ├── ConfigurationReaderV1.java │ │ ├── ConfigurationReaderV2.java │ │ ├── ControlMessageHandler.java │ │ ├── ControlMessageProcessor.java │ │ ├── ControlMessageProcessorV1.java │ │ ├── Controller.java │ │ ├── HeartbeatInformer.java │ │ ├── ModeChangeListener.java │ │ └── StateManager.java │ │ ├── data │ │ └── MessageDealerTraceDataCollector.java │ │ ├── errors │ │ ├── AgentErrorListener.java │ │ ├── ErrorHandler.java │ │ ├── ErrorListener.java │ │ └── MinlogListener.java │ │ ├── init │ │ ├── ControlConnectionHandshake.java │ │ ├── ControlConnectionHandshakeV1.java │ │ ├── DataConnectionHandshake.java │ │ └── DataConnectionHandshakeV1.java │ │ ├── javaagent │ │ ├── ClassTransformationReporter.java │ │ └── JavaAgent.java │ │ ├── message │ │ ├── BufferService.java │ │ ├── FailedToObtainBufferException.java │ │ ├── FailedToSendBufferException.java │ │ ├── MessageDealer.java │ │ ├── MessageSenderManager.java │ │ ├── PooledBufferService.java │ │ └── PooledMessageSender.java │ │ ├── protocol │ │ ├── ProtocolVersion.java │ │ ├── ProtocolVersion1.java │ │ ├── ProtocolVersion2.java │ │ ├── ProtocolVersion3.java │ │ ├── ProtocolVersion4.java │ │ └── ProtocolVersionBase.java │ │ ├── trace │ │ ├── ClassTransformationListener.java │ │ ├── InstrumentationClassVisitor.java │ │ ├── InstrumentationMethodVisitor.java │ │ ├── Instrumentor.java │ │ ├── Trace.java │ │ ├── TraceClassFileTransformer.java │ │ ├── TraceDataCollector.java │ │ └── TraceFilter.java │ │ └── util │ │ ├── ShutdownHook.java │ │ └── SocketFactory.java │ └── test │ ├── java │ └── com │ │ └── secdec │ │ └── bytefrog │ │ └── agent │ │ └── bytefrog │ │ └── test │ │ └── cases │ │ ├── ConstructorThrowTest.java │ │ ├── ExceptionBubbleTest.java │ │ ├── ExceptionFinallyBubbleTest.java │ │ ├── ExceptionThrowTest.java │ │ ├── MultipleSuperConstructorTest.java │ │ ├── SimpleConstructorTest.java │ │ ├── SimpleTest.java │ │ ├── StaticInitializerTest.java │ │ ├── SuperConstructorTest.java │ │ └── SuperConstructorThrowTest.java │ └── scala │ └── com │ └── secdec │ └── bytefrog │ └── agent │ ├── bytefrog │ └── test │ │ ├── InstrumentationSuite.scala │ │ └── util │ │ ├── TestInstrumentor.scala │ │ ├── TestRunner.scala │ │ └── TestScript.scala │ ├── control │ └── test │ │ ├── ControlMessageProcessorV1Suite.scala │ │ └── StateManagerSuite.scala │ ├── init │ └── test │ │ ├── ControlConnectionHandshakeV1Suite.scala │ │ └── DataConnectionHandshakeV1Spec.scala │ ├── message │ └── test │ │ ├── MethodIdSpec.scala │ │ └── SenderManagerV1Spec.scala │ └── util │ ├── ControlSimulation.scala │ ├── ErrorEnforcement.scala │ ├── MockHelpers.scala │ └── StateManagerHelpers.scala ├── appveyor.yml ├── bytefrog ├── .gitignore ├── .travis.yml ├── LICENSE ├── build.sbt ├── filter-injector │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── codedx │ │ └── bytefrog │ │ └── filterinjector │ │ ├── FilterInjector.java │ │ ├── adapters │ │ ├── Adapter.java │ │ ├── JettyAdapter.java │ │ └── TomcatAdapter.java │ │ └── filter │ │ ├── InjectableFilter.java │ │ └── ParameterlessFilter.java ├── instrumentation │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── codedx │ │ └── bytefrog │ │ └── instrumentation │ │ ├── BytecodeUtil.java │ │ ├── ClassInspector.java │ │ ├── ClassInstrumentor.java │ │ ├── LineLevelMapper.java │ │ ├── MethodInspector.java │ │ ├── MethodInstrumentor.java │ │ ├── handler │ │ ├── StandardTraceHandler.java │ │ └── TraceHandler.java │ │ └── id │ │ ├── ClassIdentifier.java │ │ └── MethodIdentifier.java ├── project.sublime-project ├── project │ ├── Dependencies.scala │ └── build.properties ├── readme.md ├── sourcemap-parser │ ├── README.md │ ├── license.txt │ └── src │ │ └── main │ │ └── java │ │ └── fm │ │ └── ua │ │ └── ikysil │ │ └── smap │ │ ├── AbstractStratum.java │ │ ├── Constants.java │ │ ├── EmbeddedStratum.java │ │ ├── FileInfo.java │ │ ├── Generator.java │ │ ├── GeneratorException.java │ │ ├── LineInfo.java │ │ ├── Location.java │ │ ├── Parser.java │ │ ├── ParserException.java │ │ ├── Resolver.java │ │ ├── SourceMap.java │ │ ├── SourceMapCache.java │ │ ├── SourceMapException.java │ │ ├── Stratum.java │ │ ├── UnknownInfo.java │ │ ├── VendorInfo.java │ │ ├── collections │ │ ├── EmbeddedStratumList.java │ │ ├── FileInfoList.java │ │ ├── LineInfoList.java │ │ ├── SourceMapList.java │ │ ├── StratumList.java │ │ ├── UnknownInfoList.java │ │ └── VendorInfoList.java │ │ ├── generator │ │ └── Optimizer.java │ │ └── parser │ │ ├── Builder.java │ │ ├── CloseEmbeddedStratumBuilder.java │ │ ├── EndSourceMapBuilder.java │ │ ├── FileInfoBuilder.java │ │ ├── LineInfoBuilder.java │ │ ├── OpenEmbeddedStratumBuilder.java │ │ ├── SourceMapBuilder.java │ │ ├── State.java │ │ ├── StratumBuilder.java │ │ ├── UnknownInfoBuilder.java │ │ └── VendorInfoBuilder.java └── util │ └── src │ ├── main │ └── java │ │ └── com │ │ └── codedx │ │ └── bytefrog │ │ └── util │ │ ├── ClassLoaderUtil.java │ │ └── Logger.java │ └── test │ └── scala │ └── com │ └── codedx │ └── bytefrog │ └── util │ └── ClassLoaderUtilSpec.scala ├── codepulse.sublime-project ├── codepulse └── src │ ├── main │ ├── resources │ │ ├── application.conf │ │ ├── default.props │ │ ├── logback.xml │ │ ├── production.default.props │ │ └── toserve │ │ │ ├── common │ │ │ ├── CodePulse.js │ │ │ ├── Downloader.js │ │ │ ├── UpdateController.js │ │ │ ├── branding.css │ │ │ ├── codedx-logo.png │ │ │ ├── common.css │ │ │ ├── common.js │ │ │ └── desktop.css │ │ │ ├── pages │ │ │ ├── ProjectInputForm │ │ │ │ ├── ProjectInputForm.css │ │ │ │ └── ProjectInputForm.js │ │ │ ├── ProjectList │ │ │ │ └── ProjectList.js │ │ │ ├── ProjectSwitcher │ │ │ │ ├── ProjectSwitcher.css │ │ │ │ └── ProjectSwitcher.js │ │ │ ├── index │ │ │ │ └── index.css │ │ │ ├── projects │ │ │ │ ├── API.js │ │ │ │ ├── DependencyCheck.js │ │ │ │ ├── PackageController.js │ │ │ │ ├── PackageWidget.css │ │ │ │ ├── PackageWidget.js │ │ │ │ ├── Recording.js │ │ │ │ ├── RecordingManager.js │ │ │ │ ├── RecordingWidget.js │ │ │ │ ├── SurfaceDetector.js │ │ │ │ ├── TraceDataUpdates.js │ │ │ │ ├── TraceStatus.js │ │ │ │ ├── TraceTreeData.js │ │ │ │ ├── TreeData.js │ │ │ │ ├── colorpicker-tooltip.css │ │ │ │ ├── colorpicker-tooltip.js │ │ │ │ ├── editable.js │ │ │ │ ├── projects.css │ │ │ │ ├── projects.js │ │ │ │ ├── trace-recording-controls.css │ │ │ │ ├── trace-recording-controls.js │ │ │ │ └── treemap-tooltip.css │ │ │ └── upload │ │ │ │ ├── newProjectUpload.js │ │ │ │ └── widgets-plugin.js │ │ │ ├── thirdparty │ │ │ ├── bacon │ │ │ │ └── Bacon-0.7.2-min.js │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ ├── js │ │ │ │ │ └── bootstrap.min.js │ │ │ │ └── validation │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── jqBootstrapValidation.js │ │ │ ├── codemirror │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitattributes │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ ├── fold │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ ├── hint │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ ├── html-lint.js │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ ├── runmode │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ ├── tern │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── wrap │ │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── bin │ │ │ │ │ ├── authors.sh │ │ │ │ │ ├── lint │ │ │ │ │ ├── release │ │ │ │ │ ├── source-highlight │ │ │ │ │ └── upload-release.js │ │ │ │ ├── demo │ │ │ │ │ ├── activeline.html │ │ │ │ │ ├── anywordhint.html │ │ │ │ │ ├── bidi.html │ │ │ │ │ ├── btree.html │ │ │ │ │ ├── buffers.html │ │ │ │ │ ├── changemode.html │ │ │ │ │ ├── closebrackets.html │ │ │ │ │ ├── closetag.html │ │ │ │ │ ├── complete.html │ │ │ │ │ ├── emacs.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── fullscreen.html │ │ │ │ │ ├── hardwrap.html │ │ │ │ │ ├── html5complete.html │ │ │ │ │ ├── indentwrap.html │ │ │ │ │ ├── lint.html │ │ │ │ │ ├── loadmode.html │ │ │ │ │ ├── marker.html │ │ │ │ │ ├── markselection.html │ │ │ │ │ ├── matchhighlighter.html │ │ │ │ │ ├── matchtags.html │ │ │ │ │ ├── merge.html │ │ │ │ │ ├── multiplex.html │ │ │ │ │ ├── mustache.html │ │ │ │ │ ├── panel.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ ├── preview.html │ │ │ │ │ ├── requirejs.html │ │ │ │ │ ├── resize.html │ │ │ │ │ ├── rulers.html │ │ │ │ │ ├── runmode.html │ │ │ │ │ ├── search.html │ │ │ │ │ ├── simplemode.html │ │ │ │ │ ├── simplescrollbars.html │ │ │ │ │ ├── spanaffectswrapping_shim.html │ │ │ │ │ ├── sublime.html │ │ │ │ │ ├── tern.html │ │ │ │ │ ├── theme.html │ │ │ │ │ ├── trailingspace.html │ │ │ │ │ ├── variableheight.html │ │ │ │ │ ├── vim.html │ │ │ │ │ ├── visibletabs.html │ │ │ │ │ ├── widget.html │ │ │ │ │ └── xmlcomplete.html │ │ │ │ ├── doc │ │ │ │ │ ├── activebookmark.js │ │ │ │ │ ├── docs.css │ │ │ │ │ ├── internals.html │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo.svg │ │ │ │ │ ├── manual.html │ │ │ │ │ ├── realworld.html │ │ │ │ │ ├── releases.html │ │ │ │ │ ├── reporting.html │ │ │ │ │ ├── upgrade_v2.2.html │ │ │ │ │ ├── upgrade_v3.html │ │ │ │ │ ├── upgrade_v4.html │ │ │ │ │ └── yinyang.png │ │ │ │ ├── index.html │ │ │ │ ├── keymap │ │ │ │ │ ├── emacs.js │ │ │ │ │ ├── sublime.js │ │ │ │ │ └── vim.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── mode │ │ │ │ │ ├── apl │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asciiarmor │ │ │ │ │ │ ├── asciiarmor.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asn.1 │ │ │ │ │ │ ├── asn.1.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── brainfuck │ │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scala.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── clojure │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── cmake.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── crystal │ │ │ │ │ │ ├── crystal.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── gss.html │ │ │ │ │ │ ├── gss_test.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── d │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── dart │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── dtd │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── ebnf │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── elm │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── factor │ │ │ │ │ │ ├── factor.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fcl │ │ │ │ │ │ ├── fcl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forth │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haskell-literate │ │ │ │ │ │ ├── haskell-literate.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haskell │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── jsx │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── julia │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── livescript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── mathematica │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mathematica.js │ │ │ │ │ ├── mbox │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mbox.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── mscgen │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── mscgen.js │ │ │ │ │ │ ├── mscgen_test.js │ │ │ │ │ │ ├── msgenny_test.js │ │ │ │ │ │ └── xu_test.js │ │ │ │ │ ├── mumps │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mumps.js │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── nsis │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nsis.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── oz │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── oz.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── powershell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── protobuf.js │ │ │ │ │ ├── pug │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pug.js │ │ │ │ │ ├── puppet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── q │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sas.js │ │ │ │ │ ├── sass │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── solr │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── soy.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── stylus │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── swift │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── swift.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── tcl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── troff │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── troff.js │ │ │ │ │ ├── ttcn-cfg │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ │ ├── ttcn │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ttcn.js │ │ │ │ │ ├── turtle │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── twig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── twig.js │ │ │ │ │ ├── vb │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── vhdl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vhdl.js │ │ │ │ │ ├── vue │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vue.js │ │ │ │ │ ├── webidl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── webidl.js │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yacas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yacas.js │ │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ │ ├── yaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── z80.js │ │ │ │ ├── package.json │ │ │ │ ├── rollup.config.js │ │ │ │ ├── src │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── Display.js │ │ │ │ │ │ ├── focus.js │ │ │ │ │ │ ├── gutters.js │ │ │ │ │ │ ├── highlight_worker.js │ │ │ │ │ │ ├── line_numbers.js │ │ │ │ │ │ ├── mode_state.js │ │ │ │ │ │ ├── operations.js │ │ │ │ │ │ ├── scroll_events.js │ │ │ │ │ │ ├── scrollbars.js │ │ │ │ │ │ ├── scrolling.js │ │ │ │ │ │ ├── selection.js │ │ │ │ │ │ ├── update_display.js │ │ │ │ │ │ ├── update_line.js │ │ │ │ │ │ ├── update_lines.js │ │ │ │ │ │ └── view_tracking.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── CodeMirror.js │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ ├── deleteNearSelection.js │ │ │ │ │ │ ├── drop_events.js │ │ │ │ │ │ ├── fromTextArea.js │ │ │ │ │ │ ├── global_events.js │ │ │ │ │ │ ├── key_events.js │ │ │ │ │ │ ├── legacy.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── methods.js │ │ │ │ │ │ ├── mouse_events.js │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── input │ │ │ │ │ │ ├── ContentEditableInput.js │ │ │ │ │ │ ├── TextareaInput.js │ │ │ │ │ │ ├── indent.js │ │ │ │ │ │ ├── input.js │ │ │ │ │ │ ├── keymap.js │ │ │ │ │ │ ├── keynames.js │ │ │ │ │ │ └── movement.js │ │ │ │ │ ├── line │ │ │ │ │ │ ├── highlight.js │ │ │ │ │ │ ├── line_data.js │ │ │ │ │ │ ├── pos.js │ │ │ │ │ │ ├── saw_special_spans.js │ │ │ │ │ │ ├── spans.js │ │ │ │ │ │ └── utils_line.js │ │ │ │ │ ├── measurement │ │ │ │ │ │ ├── position_measurement.js │ │ │ │ │ │ └── widgets.js │ │ │ │ │ ├── model │ │ │ │ │ │ ├── Doc.js │ │ │ │ │ │ ├── change_measurement.js │ │ │ │ │ │ ├── changes.js │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ ├── document_data.js │ │ │ │ │ │ ├── history.js │ │ │ │ │ │ ├── line_widget.js │ │ │ │ │ │ ├── mark_text.js │ │ │ │ │ │ ├── selection.js │ │ │ │ │ │ └── selection_updates.js │ │ │ │ │ ├── modes.js │ │ │ │ │ └── util │ │ │ │ │ │ ├── StringStream.js │ │ │ │ │ │ ├── bidi.js │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── event.js │ │ │ │ │ │ ├── feature_detection.js │ │ │ │ │ │ ├── misc.js │ │ │ │ │ │ └── operation_group.js │ │ │ │ ├── test │ │ │ │ │ ├── comment_test.js │ │ │ │ │ ├── contenteditable_test.js │ │ │ │ │ ├── doc_test.js │ │ │ │ │ ├── driver.js │ │ │ │ │ ├── emacs_test.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lint.js │ │ │ │ │ ├── mode_test.css │ │ │ │ │ ├── mode_test.js │ │ │ │ │ ├── multi_test.js │ │ │ │ │ ├── phantom_driver.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── scroll_test.js │ │ │ │ │ ├── search_test.js │ │ │ │ │ ├── sql-hint-test.js │ │ │ │ │ ├── sublime_test.js │ │ │ │ │ ├── test.js │ │ │ │ │ └── vim_test.js │ │ │ │ └── theme │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ ├── abcdef.css │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ ├── base16-light.css │ │ │ │ │ ├── bespin.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── colorforth.css │ │ │ │ │ ├── dracula.css │ │ │ │ │ ├── duotone-dark.css │ │ │ │ │ ├── duotone-light.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── gruvbox-dark.css │ │ │ │ │ ├── hopscotch.css │ │ │ │ │ ├── icecoder.css │ │ │ │ │ ├── idea.css │ │ │ │ │ ├── isotope.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ ├── lucario.css │ │ │ │ │ ├── material.css │ │ │ │ │ ├── mbo.css │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ ├── midnight.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── oceanic-next.css │ │ │ │ │ ├── panda-syntax.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ ├── railscasts.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── seti.css │ │ │ │ │ ├── shadowfox.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── ssms.css │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── ttcn.css │ │ │ │ │ ├── twilight.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ ├── xq-light.css │ │ │ │ │ ├── yeti.css │ │ │ │ │ └── zenburn.css │ │ │ ├── colorpicker │ │ │ │ └── colorpicker.min.js │ │ │ ├── d3 │ │ │ │ └── d3.min.js │ │ │ ├── fileupload │ │ │ │ ├── jquery.fileupload.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ └── jquery.ui.widget.js │ │ │ ├── fontawesome │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── handlebars │ │ │ │ └── handlebars.js │ │ │ ├── icomoon │ │ │ │ ├── css │ │ │ │ │ └── style.css │ │ │ │ └── fonts │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ └── icomoon.woff │ │ │ ├── jquery │ │ │ │ └── jquery-2.0.2.min.js │ │ │ ├── qtip2 │ │ │ │ ├── jquery.qtip.min.css │ │ │ │ └── jquery.qtip.min.js │ │ │ ├── spin │ │ │ │ └── spin.min.js │ │ │ ├── timeago │ │ │ │ └── jquery.timeago.js │ │ │ └── underscore │ │ │ │ └── underscore-min.js │ │ │ └── widgets │ │ │ ├── Notifications │ │ │ ├── Notifications.css │ │ │ ├── Notifications.js │ │ │ └── PieClock.js │ │ │ ├── TraceConnectorUI │ │ │ ├── ConnectionHelpForm.css │ │ │ ├── ConnectionHelpForm.js │ │ │ ├── TraceConnectorUI.css │ │ │ └── TraceConnectorUI.js │ │ │ ├── codetreemap │ │ │ ├── treemap.css │ │ │ └── treemap.js │ │ │ ├── overlay │ │ │ ├── overlay.css │ │ │ └── overlay.js │ │ │ ├── sourceview │ │ │ ├── SourceDataProvider.js │ │ │ ├── sourceview.css │ │ │ └── sourceview.js │ │ │ └── updates │ │ │ ├── updates.css │ │ │ └── updates.js │ ├── scala │ │ ├── bootstrap │ │ │ └── liftweb │ │ │ │ ├── AppCleanup.scala │ │ │ │ ├── Boot.scala │ │ │ │ ├── BootSnippets.scala │ │ │ │ ├── ExceptionHandler.scala │ │ │ │ ├── FileUploadSetup.scala │ │ │ │ ├── Sitemap.scala │ │ │ │ └── SnippetRequest.scala │ │ └── com │ │ │ └── secdec │ │ │ └── codepulse │ │ │ ├── CodePulseLogAppender.scala │ │ │ ├── CodePulseLogging.scala │ │ │ ├── components │ │ │ ├── dependencycheck │ │ │ │ └── Updates.scala │ │ │ ├── includes │ │ │ │ └── snippet │ │ │ │ │ └── Includes.scala │ │ │ ├── notifications │ │ │ │ ├── NotificationMessage.scala │ │ │ │ ├── NotificationSettings.scala │ │ │ │ └── Notifications.scala │ │ │ ├── surface │ │ │ │ └── Updates.scala │ │ │ └── version │ │ │ │ └── snippet │ │ │ │ └── VersionSnippet.scala │ │ │ ├── data │ │ │ ├── MethodSignature.scala │ │ │ ├── MethodSignatureParser.scala │ │ │ ├── MethodTypeParam.scala │ │ │ ├── bytecode │ │ │ │ ├── CodeForestBuilder.scala │ │ │ │ ├── CodePath.scala │ │ │ │ ├── CodeTree2.scala │ │ │ │ ├── MethodContentVisitor.scala │ │ │ │ └── parse │ │ │ │ │ ├── AccessFlags.scala │ │ │ │ │ ├── BinaryClassSignature.scala │ │ │ │ │ ├── BinaryMethodSignature.scala │ │ │ │ │ ├── BinaryModel.scala │ │ │ │ │ ├── ClassName.scala │ │ │ │ │ ├── Codebase.scala │ │ │ │ │ ├── Converters.scala │ │ │ │ │ ├── JVMSignatureConverter.scala │ │ │ │ │ ├── JavaSourceParsing.scala │ │ │ │ │ ├── MethodSignature.scala │ │ │ │ │ ├── SourceClassSignature.scala │ │ │ │ │ ├── SourceMethodSignature.scala │ │ │ │ │ └── SourceType.scala │ │ │ ├── dotnet │ │ │ │ ├── DotNet.scala │ │ │ │ ├── Lifetime.scala │ │ │ │ └── SymbolReaderHTTPServiceConnector.scala │ │ │ ├── jsp │ │ │ │ ├── JasperJspAdapter.scala │ │ │ │ ├── JasperJspMapper.scala │ │ │ │ ├── JasperUtils.scala │ │ │ │ ├── JspAdapter.scala │ │ │ │ ├── JspAnalyzer.scala │ │ │ │ └── JspMapper.scala │ │ │ ├── model │ │ │ │ ├── ProjectData.scala │ │ │ │ ├── ProjectId.scala │ │ │ │ ├── ProjectMetadata.scala │ │ │ │ ├── RecordingMetadata.scala │ │ │ │ ├── SourceData.scala │ │ │ │ ├── TraceEncounterData.scala │ │ │ │ ├── TreeBuilder.scala │ │ │ │ ├── TreeNodeData.scala │ │ │ │ ├── TreeNodeImporter.scala │ │ │ │ └── slick │ │ │ │ │ ├── EncountersDao.scala │ │ │ │ │ ├── ProjectMetadataDao.scala │ │ │ │ │ ├── RecordingMetadataDao.scala │ │ │ │ │ ├── SlickH2ProjectDataProvider.scala │ │ │ │ │ ├── SlickHelpers.scala │ │ │ │ │ ├── SlickMasterData.scala │ │ │ │ │ ├── SlickProjectData.scala │ │ │ │ │ ├── SlickProjectMetadataAccess.scala │ │ │ │ │ ├── SlickRecordingMetadataAccess.scala │ │ │ │ │ ├── SlickSourceDataAccess.scala │ │ │ │ │ ├── SlickTraceEncounterDataAccess.scala │ │ │ │ │ ├── SlickTreeNodeDataAccess.scala │ │ │ │ │ ├── SourceDataDao.scala │ │ │ │ │ └── TreeNodeDataDao.scala │ │ │ └── storage │ │ │ │ ├── Storage.scala │ │ │ │ ├── StorageManager.scala │ │ │ │ └── ZippedStorage.scala │ │ │ ├── dependencycheck │ │ │ ├── DependencyCheck.scala │ │ │ ├── DependencyCheckActor.scala │ │ │ ├── DependencyCheckReporter.scala │ │ │ ├── JsonHelpers.scala │ │ │ ├── Settings.scala │ │ │ └── package.scala │ │ │ ├── events │ │ │ ├── GeneralEventBus.scala │ │ │ └── processing │ │ │ │ └── ProcessStatus.scala │ │ │ ├── input │ │ │ ├── InputFileProcessor.scala │ │ │ ├── LanguageProcessor.scala │ │ │ ├── bytecode │ │ │ │ └── ByteCodeProcessor.scala │ │ │ ├── dependencycheck │ │ │ │ └── DependencyCheckPostProcessor.scala │ │ │ ├── dotnet │ │ │ │ └── DotNETProcessor.scala │ │ │ ├── pathnormalization │ │ │ │ └── PathNormalization.scala │ │ │ ├── project │ │ │ │ └── ProjectInput.scala │ │ │ └── surface │ │ │ │ └── SurfaceDetectorPostProcessor.scala │ │ │ ├── package.scala │ │ │ ├── pages │ │ │ └── traces │ │ │ │ └── ProjectDetailsPage.scala │ │ │ ├── surface │ │ │ ├── JsonHelpers.scala │ │ │ ├── SurfaceDetector.scala │ │ │ └── package.scala │ │ │ ├── tracer │ │ │ ├── APIServer.scala │ │ │ ├── AccumulationRequestActor.scala │ │ │ ├── AkkaTracingTarget.scala │ │ │ ├── PackageTreeStreamer.scala │ │ │ ├── ProjectFileUploadHandler.scala │ │ │ ├── ProjectManager.scala │ │ │ ├── ProjectUploadData.scala │ │ │ ├── StreamingTraceDataManager.scala │ │ │ ├── TraceConnectionAcknowledger.scala │ │ │ ├── TraceConnectionLooper.scala │ │ │ ├── TraceRecorderDataProcessor.scala │ │ │ ├── TraceServer.scala │ │ │ ├── TraceSettingsCreator.scala │ │ │ ├── TransientTraceData.scala │ │ │ ├── TreeBuilderManager.scala │ │ │ ├── TreemapDataStreamer.scala │ │ │ ├── export │ │ │ │ ├── JsonHelpers.scala │ │ │ │ ├── ProjectExporter.scala │ │ │ │ ├── ProjectImportReaderV1.scala │ │ │ │ ├── ProjectImportReaderV2.scala │ │ │ │ └── ProjectImporter.scala │ │ │ ├── package.scala │ │ │ └── snippet │ │ │ │ ├── CometTracerUI.scala │ │ │ │ ├── ConnectionHelp.scala │ │ │ │ ├── ProjectListUpdates.scala │ │ │ │ ├── ProjectUpdated.scala │ │ │ │ ├── ProjectWidgetry.scala │ │ │ │ ├── TraceConnectorState.scala │ │ │ │ └── TraceConnectorStateChanges.scala │ │ │ └── util │ │ │ ├── Actor.scala │ │ │ ├── ApplicationData.scala │ │ │ ├── Implicits.scala │ │ │ ├── LRUCacheSupport.scala │ │ │ ├── ManualOnDiskFileParamHolder.scala │ │ │ ├── OperatingSystem.scala │ │ │ ├── Pluralizer.scala │ │ │ ├── RichFile.scala │ │ │ ├── SmartLoader.scala │ │ │ ├── TaskScheduler.scala │ │ │ ├── Throwable.scala │ │ │ ├── Timing.scala │ │ │ ├── ZipCleaner.scala │ │ │ ├── ZipEntryChecker.scala │ │ │ └── comet │ │ │ ├── CometWidget.scala │ │ │ ├── JqEventSupport.scala │ │ │ └── PublicCometInit.scala │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── icon.png │ │ ├── index.html │ │ ├── projects.html │ │ └── templates-hidden │ │ ├── Notifications.html │ │ ├── ProjectInputForm.html │ │ ├── ProjectList.html │ │ ├── ProjectSwitcher.html │ │ ├── TraceConnectorUI.html │ │ ├── branding.html │ │ ├── desktop.html │ │ ├── package-widget-template.html │ │ └── trace-recording-controls.html │ └── test │ ├── resources │ └── com │ │ └── secdec │ │ └── codepulse │ │ ├── data │ │ ├── bytecode │ │ │ ├── parse │ │ │ │ └── test │ │ │ │ │ ├── Main.class │ │ │ │ │ └── Main.java │ │ │ └── test │ │ │ │ ├── java7-compiled.jar │ │ │ │ ├── java8-compiled.jar │ │ │ │ └── java9-compiled.jar │ │ └── storage │ │ │ └── test │ │ │ ├── multi-level.zip │ │ │ ├── nested.zip │ │ │ └── single-level.zip │ │ └── tracer │ │ └── export │ │ └── test │ │ ├── InvokeAMethod.v1.pulse │ │ ├── InvokeAMethod.v2.WithSourceFile.pulse │ │ ├── InvokeAMethod.v2.legacy.pulse │ │ └── WebApi.v2.1.pulse │ └── scala │ └── com │ └── secdec │ └── codepulse │ ├── data │ ├── bytecode │ │ ├── parse │ │ │ └── test │ │ │ │ └── JavaParsingSuite.scala │ │ └── test │ │ │ ├── CodeTreeSuite.scala │ │ │ └── JavaSuite.scala │ ├── model │ │ └── slick │ │ │ └── TreeNodeDataDaoSuite.scala │ └── storage │ │ └── test │ │ └── ZippedStorageSuite.scala │ └── tracer │ ├── TraceRecorderDataProcessorSuite.scala │ └── export │ └── test │ ├── ExportSuite.scala │ └── ImportSuite.scala ├── distrib ├── common │ ├── app │ │ ├── byline.js │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── log.css │ │ ├── log.html │ │ ├── log.js │ │ ├── main.js │ │ ├── spinner.css │ │ ├── startup.css │ │ ├── startup.html │ │ └── startup.js │ └── package.json └── jetty-conf │ ├── etc │ ├── jetty-annotations.xml │ ├── jetty-deploy.xml │ ├── jetty-http.xml │ ├── jetty-plus.xml │ ├── jetty-webapp.xml │ ├── jetty.xml │ └── webdefault.xml │ ├── start.d │ ├── README.TXT │ └── http.ini │ └── start.ini ├── dotnet-symbol-service ├── .gitignore ├── LICENSE ├── README.md ├── SymbolService.sln └── SymbolService │ ├── Controllers │ └── MethodsController.cs │ ├── Model │ ├── MethodInfo.cs │ └── Modifiers.cs │ ├── Program.cs │ ├── Startup.cs │ ├── SymbolService.csproj │ ├── appsettings.Development.json │ └── appsettings.json ├── dotnet-tracer ├── .gitattributes ├── .github │ ├── contributing.md │ ├── issue_template.md │ └── pull_request_template.md ├── .gitignore ├── Build.bat ├── License.md ├── License.rtf ├── README.md ├── ReleaseNotes.tmp ├── appveyor.yml ├── build │ ├── README.txt │ ├── Version │ │ ├── .gitignore │ │ ├── AssemblyCopyright.cs │ │ ├── AssemblyCopyright.tt │ │ ├── GlobalAssemblyInfo.cs │ │ ├── opencover.3rdparty.snk │ │ └── opencover.test.snk │ ├── coverity │ │ └── coverity_model.c │ ├── environment.build │ ├── installer.build │ ├── metrics.build │ ├── nant-0.91-alpha2 │ │ ├── COPYING.txt │ │ ├── README.txt │ │ ├── bin │ │ │ ├── NAnt.CompressionTasks.dll │ │ │ ├── NAnt.CompressionTasks.xml │ │ │ ├── NAnt.Core.dll │ │ │ ├── NAnt.Core.xml │ │ │ ├── NAnt.DotNetTasks.dll │ │ │ ├── NAnt.DotNetTasks.xml │ │ │ ├── NAnt.MSNetTasks.dll │ │ │ ├── NAnt.MSNetTasks.xml │ │ │ ├── NAnt.NUnit.dll │ │ │ ├── NAnt.NUnit.xml │ │ │ ├── NAnt.NUnit1Tasks.dll │ │ │ ├── NAnt.NUnit1Tasks.xml │ │ │ ├── NAnt.NUnit2Tasks.dll │ │ │ ├── NAnt.NUnit2Tasks.xml │ │ │ ├── NAnt.SourceControlTasks.dll │ │ │ ├── NAnt.SourceControlTasks.xml │ │ │ ├── NAnt.VSNetTasks.dll │ │ │ ├── NAnt.VSNetTasks.xml │ │ │ ├── NAnt.VisualCppTasks.dll │ │ │ ├── NAnt.VisualCppTasks.xml │ │ │ ├── NAnt.Win32Tasks.dll │ │ │ ├── NAnt.Win32Tasks.xml │ │ │ ├── NAnt.exe │ │ │ ├── NAnt.exe.config │ │ │ ├── NAnt.xml │ │ │ ├── NDoc.Documenter.NAnt.dll │ │ │ ├── extensions │ │ │ │ └── common │ │ │ │ │ └── 2.0 │ │ │ │ │ ├── NAnt.MSBuild.dll │ │ │ │ │ └── NAnt.MSBuild.xml │ │ │ ├── lib │ │ │ │ ├── common │ │ │ │ │ ├── 1.1 │ │ │ │ │ │ ├── nunit-console-runner.dll │ │ │ │ │ │ ├── nunit-console.exe │ │ │ │ │ │ ├── nunit.core.dll │ │ │ │ │ │ ├── nunit.framework.dll │ │ │ │ │ │ └── nunit.util.dll │ │ │ │ │ ├── 2.0 │ │ │ │ │ │ ├── nunit-console-runner.dll │ │ │ │ │ │ ├── nunit-console.exe │ │ │ │ │ │ ├── nunit.core.dll │ │ │ │ │ │ ├── nunit.framework.dll │ │ │ │ │ │ └── nunit.util.dll │ │ │ │ │ └── neutral │ │ │ │ │ │ ├── ICSharpCode.SharpCvsLib.Console.dll │ │ │ │ │ │ ├── ICSharpCode.SharpCvsLib.dll │ │ │ │ │ │ ├── ICSharpCode.SharpZipLib.dll │ │ │ │ │ │ ├── NDoc.Core.dll │ │ │ │ │ │ ├── NDoc.Documenter.Msdn.dll │ │ │ │ │ │ ├── NDoc.ExtendedUI.dll │ │ │ │ │ │ └── NUnitCore.dll │ │ │ │ └── net │ │ │ │ │ └── 1.0 │ │ │ │ │ ├── nunit-console-runner.dll │ │ │ │ │ ├── nunit-console.exe │ │ │ │ │ ├── nunit.core.dll │ │ │ │ │ ├── nunit.framework.dll │ │ │ │ │ └── nunit.util.dll │ │ │ ├── log4net.dll │ │ │ └── scvs.exe │ │ ├── doc │ │ │ ├── help │ │ │ │ ├── elements │ │ │ │ │ ├── NAnt.Compression.Tasks.ExpandBaseTask.html │ │ │ │ │ ├── NAnt.Core.DataTypeBase.html │ │ │ │ │ ├── NAnt.Core.Filters.ChainableReader.html │ │ │ │ │ ├── NAnt.Core.Filters.Filter.html │ │ │ │ │ ├── NAnt.Core.Target.html │ │ │ │ │ ├── NAnt.Core.Task.html │ │ │ │ │ ├── NAnt.Core.TaskContainer.html │ │ │ │ │ ├── NAnt.Core.Tasks.ExternalProgramBase.html │ │ │ │ │ ├── NAnt.Core.Tasks.InElement.html │ │ │ │ │ ├── NAnt.Core.Types.Argument.html │ │ │ │ │ ├── NAnt.Core.Types.EnvironmentSet.html │ │ │ │ │ ├── NAnt.Core.Types.EnvironmentVariable.html │ │ │ │ │ ├── NAnt.Core.Types.FileSet.Exclude.html │ │ │ │ │ ├── NAnt.Core.Types.FileSet.ExcludesFile.html │ │ │ │ │ ├── NAnt.Core.Types.FileSet.Include.html │ │ │ │ │ ├── NAnt.Core.Types.FileSet.IncludesFile.html │ │ │ │ │ ├── NAnt.Core.Types.Formatter.html │ │ │ │ │ ├── NAnt.Core.Types.Option.html │ │ │ │ │ ├── NAnt.Core.Types.PathElement.html │ │ │ │ │ ├── NAnt.Core.Types.Pattern.html │ │ │ │ │ ├── NAnt.Core.Types.RawXml.html │ │ │ │ │ ├── NAnt.Core.Types.Token.html │ │ │ │ │ ├── NAnt.Core.Types.XmlNamespace.html │ │ │ │ │ ├── NAnt.Core.Types.XsltExtensionObject.html │ │ │ │ │ ├── NAnt.Core.Types.XsltParameter.html │ │ │ │ │ ├── NAnt.DotNet.Tasks.CompilerBase.html │ │ │ │ │ ├── NAnt.DotNet.Types.AssemblyAttribute.html │ │ │ │ │ ├── NAnt.DotNet.Types.CompilerWarning.html │ │ │ │ │ ├── NAnt.DotNet.Types.DataTypeCollectionBase.html │ │ │ │ │ ├── NAnt.DotNet.Types.EmbeddedResourceCollection.html │ │ │ │ │ ├── NAnt.DotNet.Types.LibDirectorySet.html │ │ │ │ │ ├── NAnt.DotNet.Types.Module.html │ │ │ │ │ ├── NAnt.DotNet.Types.NamespaceImport.html │ │ │ │ │ ├── NAnt.DotNet.Types.Package.html │ │ │ │ │ ├── NAnt.NUnit.Types.FormatterElement.html │ │ │ │ │ ├── NAnt.NUnit1.Types.NUnitTest.html │ │ │ │ │ ├── NAnt.NUnit2.Types.Category.html │ │ │ │ │ ├── NAnt.NUnit2.Types.NUnit2Test.html │ │ │ │ │ ├── NAnt.SourceControl.Tasks.AbstractCvsTask.html │ │ │ │ │ ├── NAnt.SourceControl.Tasks.AbstractSourceControlTask.html │ │ │ │ │ ├── NAnt.VSNet.Types.WebMap.html │ │ │ │ │ ├── NAnt.VisualCpp.Types.Library.html │ │ │ │ │ └── NAnt.VisualCpp.Types.Symbol.html │ │ │ │ ├── enums │ │ │ │ │ ├── NAnt.Compression.Types.DuplicateHandling.html │ │ │ │ │ ├── NAnt.Compression.Types.TarCompressionMethod.html │ │ │ │ │ ├── NAnt.Core.FrameworkTypes.html │ │ │ │ │ ├── NAnt.Core.Level.html │ │ │ │ │ ├── NAnt.Core.Tasks.AvailableTask.ResourceType.html │ │ │ │ │ ├── NAnt.Core.Tasks.LoopTask.LoopItem.html │ │ │ │ │ ├── NAnt.Core.Tasks.LoopTask.LoopTrim.html │ │ │ │ │ ├── NAnt.Core.Types.ManagedExecution.html │ │ │ │ │ ├── NAnt.DotNet.Tasks.AssemblyInfoTask.CodeLanguage.html │ │ │ │ │ ├── NAnt.DotNet.Tasks.RegsvcsTask.ActionType.html │ │ │ │ │ ├── NAnt.DotNet.Types.DebugOutput.html │ │ │ │ │ ├── NAnt.DotNet.Types.DelaySign.html │ │ │ │ │ ├── NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.html │ │ │ │ │ ├── NAnt.NUnit.Types.FormatterType.html │ │ │ │ │ ├── NAnt.VisualCpp.Tasks.ClTask.PrecompiledHeaderMode.html │ │ │ │ │ └── NAnt.VisualCpp.Types.CharacterSet.html │ │ │ │ ├── filters │ │ │ │ │ ├── expandproperties.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── replacestring.html │ │ │ │ │ ├── replacetokens.html │ │ │ │ │ └── tabstospaces.html │ │ │ │ ├── functions │ │ │ │ │ ├── assembly.get-full-name(System.Reflection.Assembly).html │ │ │ │ │ ├── assembly.get-location(System.Reflection.Assembly).html │ │ │ │ │ ├── assembly.get-name(System.Reflection.Assembly).html │ │ │ │ │ ├── assembly.load(System.String).html │ │ │ │ │ ├── assembly.load-from-file(System.String).html │ │ │ │ │ ├── assemblyname.get-assembly-name(System.String).html │ │ │ │ │ ├── assemblyname.get-codebase(System.Reflection.AssemblyName).html │ │ │ │ │ ├── assemblyname.get-escaped-codebase(System.Reflection.AssemblyName).html │ │ │ │ │ ├── assemblyname.get-full-name(System.Reflection.AssemblyName).html │ │ │ │ │ ├── assemblyname.get-name(System.Reflection.AssemblyName).html │ │ │ │ │ ├── assemblyname.get-version(System.Reflection.AssemblyName).html │ │ │ │ │ ├── bool.parse(System.String).html │ │ │ │ │ ├── bool.to-string(System.Boolean).html │ │ │ │ │ ├── convert.to-boolean(System.Boolean).html │ │ │ │ │ ├── convert.to-datetime(System.DateTime).html │ │ │ │ │ ├── convert.to-double(System.Double).html │ │ │ │ │ ├── convert.to-int(System.Int32).html │ │ │ │ │ ├── convert.to-string(System.String).html │ │ │ │ │ ├── cygpath.get-dos-path(System.String).html │ │ │ │ │ ├── cygpath.get-unix-path(System.String).html │ │ │ │ │ ├── cygpath.get-windows-path(System.String).html │ │ │ │ │ ├── datetime.get-day(System.DateTime).html │ │ │ │ │ ├── datetime.get-day-of-week(System.DateTime).html │ │ │ │ │ ├── datetime.get-day-of-year(System.DateTime).html │ │ │ │ │ ├── datetime.get-days-in-month(System.Int32,System.Int32).html │ │ │ │ │ ├── datetime.get-hour(System.DateTime).html │ │ │ │ │ ├── datetime.get-millisecond(System.DateTime).html │ │ │ │ │ ├── datetime.get-minute(System.DateTime).html │ │ │ │ │ ├── datetime.get-month(System.DateTime).html │ │ │ │ │ ├── datetime.get-second(System.DateTime).html │ │ │ │ │ ├── datetime.get-ticks(System.DateTime).html │ │ │ │ │ ├── datetime.get-year(System.DateTime).html │ │ │ │ │ ├── datetime.is-leap-year(System.Int32).html │ │ │ │ │ ├── datetime.now().html │ │ │ │ │ ├── datetime.parse(System.String).html │ │ │ │ │ ├── datetime.to-string(System.DateTime).html │ │ │ │ │ ├── directory.exists(System.String).html │ │ │ │ │ ├── directory.get-creation-time(System.String).html │ │ │ │ │ ├── directory.get-current-directory().html │ │ │ │ │ ├── directory.get-directory-root(System.String).html │ │ │ │ │ ├── directory.get-last-access-time(System.String).html │ │ │ │ │ ├── directory.get-last-write-time(System.String).html │ │ │ │ │ ├── directory.get-parent-directory(System.String).html │ │ │ │ │ ├── dns.get-host-name().html │ │ │ │ │ ├── double.parse(System.String).html │ │ │ │ │ ├── double.to-string(System.Double).html │ │ │ │ │ ├── environment.get-folder-path(System.Environment.SpecialFolder).html │ │ │ │ │ ├── environment.get-machine-name().html │ │ │ │ │ ├── environment.get-operating-system().html │ │ │ │ │ ├── environment.get-user-name().html │ │ │ │ │ ├── environment.get-variable(System.String).html │ │ │ │ │ ├── environment.get-version().html │ │ │ │ │ ├── environment.newline().html │ │ │ │ │ ├── environment.variable-exists(System.String).html │ │ │ │ │ ├── file.exists(System.String).html │ │ │ │ │ ├── file.get-creation-time(System.String).html │ │ │ │ │ ├── file.get-last-access-time(System.String).html │ │ │ │ │ ├── file.get-last-write-time(System.String).html │ │ │ │ │ ├── file.get-length(System.String).html │ │ │ │ │ ├── file.is-assembly(System.String).html │ │ │ │ │ ├── file.up-to-date(System.String,System.String).html │ │ │ │ │ ├── fileversioninfo.get-company-name(System.Diagnostics.FileVersionInfo).html │ │ │ │ │ ├── fileversioninfo.get-file-version(System.Diagnostics.FileVersionInfo).html │ │ │ │ │ ├── fileversioninfo.get-product-name(System.Diagnostics.FileVersionInfo).html │ │ │ │ │ ├── fileversioninfo.get-product-version(System.Diagnostics.FileVersionInfo).html │ │ │ │ │ ├── fileversioninfo.get-version-info(System.String).html │ │ │ │ │ ├── framework.exists(System.String).html │ │ │ │ │ ├── framework.get-assembly-directory(System.String).html │ │ │ │ │ ├── framework.get-clr-version().html │ │ │ │ │ ├── framework.get-clr-version(System.String).html │ │ │ │ │ ├── framework.get-description().html │ │ │ │ │ ├── framework.get-description(System.String).html │ │ │ │ │ ├── framework.get-family(System.String).html │ │ │ │ │ ├── framework.get-framework-directory(System.String).html │ │ │ │ │ ├── framework.get-frameworks(NAnt.Core.FrameworkTypes).html │ │ │ │ │ ├── framework.get-runtime-engine(System.String).html │ │ │ │ │ ├── framework.get-runtime-framework().html │ │ │ │ │ ├── framework.get-sdk-directory(System.String).html │ │ │ │ │ ├── framework.get-target-framework().html │ │ │ │ │ ├── framework.get-tool-path(System.String).html │ │ │ │ │ ├── framework.get-version().html │ │ │ │ │ ├── framework.get-version(System.String).html │ │ │ │ │ ├── framework.sdk-exists(System.String).html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── int.parse(System.String).html │ │ │ │ │ ├── int.to-string(System.Int32).html │ │ │ │ │ ├── long.parse(System.String).html │ │ │ │ │ ├── long.to-string(System.Int64).html │ │ │ │ │ ├── math.abs(System.Double).html │ │ │ │ │ ├── math.ceiling(System.Double).html │ │ │ │ │ ├── math.floor(System.Double).html │ │ │ │ │ ├── math.round(System.Double).html │ │ │ │ │ ├── nant.get-assembly().html │ │ │ │ │ ├── nant.get-base-directory().html │ │ │ │ │ ├── operating-system.get-platform(System.OperatingSystem).html │ │ │ │ │ ├── operating-system.get-version(System.OperatingSystem).html │ │ │ │ │ ├── operating-system.to-string(System.OperatingSystem).html │ │ │ │ │ ├── path.change-extension(System.String,System.String).html │ │ │ │ │ ├── path.combine(System.String,System.String).html │ │ │ │ │ ├── path.get-directory-name(System.String).html │ │ │ │ │ ├── path.get-extension(System.String).html │ │ │ │ │ ├── path.get-file-name(System.String).html │ │ │ │ │ ├── path.get-file-name-without-extension(System.String).html │ │ │ │ │ ├── path.get-full-path(System.String).html │ │ │ │ │ ├── path.get-path-root(System.String).html │ │ │ │ │ ├── path.get-temp-file-name().html │ │ │ │ │ ├── path.get-temp-path().html │ │ │ │ │ ├── path.has-extension(System.String).html │ │ │ │ │ ├── path.is-path-rooted(System.String).html │ │ │ │ │ ├── pkg-config.exists(System.String).html │ │ │ │ │ ├── pkg-config.get-compile-flags(System.String).html │ │ │ │ │ ├── pkg-config.get-link-flags(System.String).html │ │ │ │ │ ├── pkg-config.get-mod-version(System.String).html │ │ │ │ │ ├── pkg-config.get-variable(System.String,System.String).html │ │ │ │ │ ├── pkg-config.is-atleast-version(System.String,System.String).html │ │ │ │ │ ├── pkg-config.is-between-version(System.String,System.String,System.String).html │ │ │ │ │ ├── pkg-config.is-exact-version(System.String,System.String).html │ │ │ │ │ ├── pkg-config.is-max-version(System.String,System.String).html │ │ │ │ │ ├── platform.get-name().html │ │ │ │ │ ├── platform.is-unix().html │ │ │ │ │ ├── platform.is-win32().html │ │ │ │ │ ├── platform.is-windows().html │ │ │ │ │ ├── project.get-base-directory().html │ │ │ │ │ ├── project.get-buildfile-path().html │ │ │ │ │ ├── project.get-buildfile-uri().html │ │ │ │ │ ├── project.get-default-target().html │ │ │ │ │ ├── project.get-name().html │ │ │ │ │ ├── property.exists(System.String).html │ │ │ │ │ ├── property.get-value(System.String).html │ │ │ │ │ ├── property.is-dynamic(System.String).html │ │ │ │ │ ├── property.is-readonly(System.String).html │ │ │ │ │ ├── string.contains(System.String,System.String).html │ │ │ │ │ ├── string.ends-with(System.String,System.String).html │ │ │ │ │ ├── string.get-length(System.String).html │ │ │ │ │ ├── string.index-of(System.String,System.String).html │ │ │ │ │ ├── string.last-index-of(System.String,System.String).html │ │ │ │ │ ├── string.pad-left(System.String,System.Int32,System.String).html │ │ │ │ │ ├── string.pad-right(System.String,System.Int32,System.String).html │ │ │ │ │ ├── string.replace(System.String,System.String,System.String).html │ │ │ │ │ ├── string.starts-with(System.String,System.String).html │ │ │ │ │ ├── string.substring(System.String,System.Int32,System.Int32).html │ │ │ │ │ ├── string.to-lower(System.String).html │ │ │ │ │ ├── string.to-upper(System.String).html │ │ │ │ │ ├── string.trim(System.String).html │ │ │ │ │ ├── string.trim-end(System.String).html │ │ │ │ │ ├── string.trim-start(System.String).html │ │ │ │ │ ├── target.exists(System.String).html │ │ │ │ │ ├── target.get-current-target().html │ │ │ │ │ ├── target.has-executed(System.String).html │ │ │ │ │ ├── task.exists(System.String).html │ │ │ │ │ ├── task.get-assembly(System.String).html │ │ │ │ │ ├── timespan.from-days(System.Double).html │ │ │ │ │ ├── timespan.from-hours(System.Double).html │ │ │ │ │ ├── timespan.from-milliseconds(System.Double).html │ │ │ │ │ ├── timespan.from-minutes(System.Double).html │ │ │ │ │ ├── timespan.from-seconds(System.Double).html │ │ │ │ │ ├── timespan.from-ticks(System.Int64).html │ │ │ │ │ ├── timespan.get-days(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-hours(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-milliseconds(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-minutes(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-seconds(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-ticks(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-total-days(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-total-hours(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-total-milliseconds(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-total-minutes(System.TimeSpan).html │ │ │ │ │ ├── timespan.get-total-seconds(System.TimeSpan).html │ │ │ │ │ ├── timespan.parse(System.String).html │ │ │ │ │ ├── timespan.to-string(System.TimeSpan).html │ │ │ │ │ ├── version.get-build(System.Version).html │ │ │ │ │ ├── version.get-major(System.Version).html │ │ │ │ │ ├── version.get-minor(System.Version).html │ │ │ │ │ ├── version.get-revision(System.Version).html │ │ │ │ │ ├── version.parse(System.String).html │ │ │ │ │ └── version.to-string(System.Version).html │ │ │ │ ├── fundamentals │ │ │ │ │ ├── buildfiles.html │ │ │ │ │ ├── expressions.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── listeners.html │ │ │ │ │ ├── projects.html │ │ │ │ │ ├── properties.html │ │ │ │ │ ├── running-nant.html │ │ │ │ │ ├── targets.html │ │ │ │ │ └── tasks.html │ │ │ │ ├── images │ │ │ │ │ ├── arrow.gif │ │ │ │ │ ├── bullet.gif │ │ │ │ │ └── logo.gif │ │ │ │ ├── index.html │ │ │ │ ├── introduction │ │ │ │ │ ├── fog0000000006.html │ │ │ │ │ ├── fog0000000041.html │ │ │ │ │ ├── fog0000000042.html │ │ │ │ │ ├── fog0000000079.html │ │ │ │ │ ├── fog0000000081.html │ │ │ │ │ ├── getting-started.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── installation.html │ │ │ │ ├── style.css │ │ │ │ ├── tasks │ │ │ │ │ ├── al.html │ │ │ │ │ ├── asminfo.html │ │ │ │ │ ├── attrib.html │ │ │ │ │ ├── available.html │ │ │ │ │ ├── aximp.html │ │ │ │ │ ├── call.html │ │ │ │ │ ├── cl.html │ │ │ │ │ ├── copy.html │ │ │ │ │ ├── csc.html │ │ │ │ │ ├── cvs-changelog.html │ │ │ │ │ ├── cvs-checkout.html │ │ │ │ │ ├── cvs-export.html │ │ │ │ │ ├── cvs-pass.html │ │ │ │ │ ├── cvs-rtag.html │ │ │ │ │ ├── cvs-tag.html │ │ │ │ │ ├── cvs-update.html │ │ │ │ │ ├── cvs.html │ │ │ │ │ ├── delay-sign.html │ │ │ │ │ ├── delete.html │ │ │ │ │ ├── description.html │ │ │ │ │ ├── echo.html │ │ │ │ │ ├── exec.html │ │ │ │ │ ├── fail.html │ │ │ │ │ ├── foreach.html │ │ │ │ │ ├── get.html │ │ │ │ │ ├── gunzip.html │ │ │ │ │ ├── if.html │ │ │ │ │ ├── ifnot.html │ │ │ │ │ ├── ilasm.html │ │ │ │ │ ├── ildasm.html │ │ │ │ │ ├── include.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jsc.html │ │ │ │ │ ├── lib.html │ │ │ │ │ ├── license.html │ │ │ │ │ ├── link.html │ │ │ │ │ ├── loadfile.html │ │ │ │ │ ├── loadtasks.html │ │ │ │ │ ├── mail.html │ │ │ │ │ ├── mc.html │ │ │ │ │ ├── midl.html │ │ │ │ │ ├── mkdir.html │ │ │ │ │ ├── move.html │ │ │ │ │ ├── nant.html │ │ │ │ │ ├── nantschema.html │ │ │ │ │ ├── ndoc.html │ │ │ │ │ ├── nunit.html │ │ │ │ │ ├── nunit2.html │ │ │ │ │ ├── property.html │ │ │ │ │ ├── rc.html │ │ │ │ │ ├── readregistry.html │ │ │ │ │ ├── regasm.html │ │ │ │ │ ├── regex.html │ │ │ │ │ ├── regsvcs.html │ │ │ │ │ ├── resgen.html │ │ │ │ │ ├── script.html │ │ │ │ │ ├── servicecontroller.html │ │ │ │ │ ├── setenv.html │ │ │ │ │ ├── sleep.html │ │ │ │ │ ├── solution.html │ │ │ │ │ ├── style.html │ │ │ │ │ ├── sysinfo.html │ │ │ │ │ ├── tar.html │ │ │ │ │ ├── tlbexp.html │ │ │ │ │ ├── tlbimp.html │ │ │ │ │ ├── touch.html │ │ │ │ │ ├── tstamp.html │ │ │ │ │ ├── untar.html │ │ │ │ │ ├── unzip.html │ │ │ │ │ ├── uptodate.html │ │ │ │ │ ├── vbc.html │ │ │ │ │ ├── vjc.html │ │ │ │ │ ├── xmlpeek.html │ │ │ │ │ ├── xmlpoke.html │ │ │ │ │ └── zip.html │ │ │ │ └── types │ │ │ │ │ ├── assemblyfileset.html │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── credential.html │ │ │ │ │ ├── cvsfileset.html │ │ │ │ │ ├── dirset.html │ │ │ │ │ ├── fileset.html │ │ │ │ │ ├── filterchain.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── moduleset.html │ │ │ │ │ ├── namespaceimports.html │ │ │ │ │ ├── path.html │ │ │ │ │ ├── patternset.html │ │ │ │ │ ├── proxy.html │ │ │ │ │ ├── resourcefileset.html │ │ │ │ │ ├── tarfileset.html │ │ │ │ │ ├── warnaserror.html │ │ │ │ │ └── zipfileset.html │ │ │ ├── license.html │ │ │ ├── releasenotes.html │ │ │ └── sdk │ │ │ │ └── NAnt-SDK.chm │ │ ├── examples │ │ │ ├── Filters │ │ │ │ └── ReplaceCharacter │ │ │ │ │ ├── ReplaceCharacter.cs │ │ │ │ │ └── default.build │ │ │ ├── HelloWindowsForms │ │ │ │ ├── HelloWindowsForms.build │ │ │ │ ├── HelloWindowsForms.vbproj │ │ │ │ ├── MainForm.resx │ │ │ │ └── MainForm.vb │ │ │ ├── HelloWorld │ │ │ │ ├── HelloWorld.cs │ │ │ │ ├── HelloWorld.js │ │ │ │ ├── HelloWorld.vb │ │ │ │ └── default.build │ │ │ ├── NUnit2 │ │ │ │ └── ReferenceAssemblies │ │ │ │ │ ├── Helper.cs │ │ │ │ │ ├── ReferenceTest.cs │ │ │ │ │ └── default.build │ │ │ ├── ScriptTask │ │ │ │ └── script-sample.build │ │ │ ├── Simple │ │ │ │ ├── Simple.build │ │ │ │ └── Simple.cs │ │ │ ├── Solution │ │ │ │ ├── cpp │ │ │ │ │ ├── WinForms │ │ │ │ │ │ ├── AssemblyInfo.cpp │ │ │ │ │ │ ├── Form1.cpp │ │ │ │ │ │ ├── Form1.h │ │ │ │ │ │ ├── Form1.resX │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── WinForms.sln │ │ │ │ │ │ ├── WinForms.vcproj │ │ │ │ │ │ ├── app.ico │ │ │ │ │ │ ├── app.rc │ │ │ │ │ │ ├── cpp.build │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ │ └── stdafx.h │ │ │ │ │ └── default.build │ │ │ │ ├── cs │ │ │ │ │ ├── WinForms │ │ │ │ │ │ ├── App.ico │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── WinForms.csproj │ │ │ │ │ │ ├── WinForms.sln │ │ │ │ │ │ └── cs.build │ │ │ │ │ └── default.build │ │ │ │ ├── vb │ │ │ │ │ ├── WinForms │ │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── Form1.vb │ │ │ │ │ │ ├── WinForms.sln │ │ │ │ │ │ ├── WinForms.vbproj │ │ │ │ │ │ └── vb.build │ │ │ │ │ └── default.build │ │ │ │ └── vjs │ │ │ │ │ ├── WinForms │ │ │ │ │ ├── AssemblyInfo.jsl │ │ │ │ │ ├── Form1.jsl │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── WinForms.sln │ │ │ │ │ ├── WinForms.vjsproj │ │ │ │ │ └── vjs.build │ │ │ │ │ └── default.build │ │ │ ├── StyleTask │ │ │ │ └── SimpleExtensionObject │ │ │ │ │ ├── SimpleExtension.build │ │ │ │ │ ├── SimpleExtension.cs │ │ │ │ │ ├── SimpleExtension.dll │ │ │ │ │ ├── circle.xsl │ │ │ │ │ └── circles.xml │ │ │ ├── UserTask │ │ │ │ ├── UserTask.cs │ │ │ │ └── default.build │ │ │ └── examples.build │ │ └── schema │ │ │ └── nant.xsd │ ├── nantcontrib-0.85 │ │ ├── bin │ │ │ ├── CollectionGen.dll │ │ │ ├── Interop.MsmMergeTypeLib.dll │ │ │ ├── Interop.StarTeam.dll │ │ │ ├── Interop.WindowsInstaller.dll │ │ │ ├── MSITaskErrors.mst │ │ │ ├── MSITaskTemplate.msi │ │ │ ├── MSMTaskErrors.mst │ │ │ ├── MSMTaskTemplate.msm │ │ │ ├── NAnt.Contrib.Tasks.dll │ │ │ ├── NAnt.Contrib.Tasks.xml │ │ │ ├── SLiNgshoT.Core.dll │ │ │ ├── SLiNgshoT.exe │ │ │ └── SourceSafe.Interop.dll │ │ ├── doc │ │ │ ├── help │ │ │ │ ├── elements │ │ │ │ │ ├── NAnt.Contrib.Tasks.ADSIBaseTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.BizTalkBase.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Orchestration.EnlistOrchestrationAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Orchestration.OrchestrationActionBase.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Orchestration.StartOrchestrationAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Orchestration.StopOrchestrationAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Orchestration.UnenlistOrchestrationAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.ClearCase.ClearCaseBase.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.GacTaskBase.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Mks.BaseTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Msi.InstallerTaskBase.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.NestedTaskContainer.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.PVCS.PVCSMultipleEntityTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.PVCS.PVCSProjectDatabaseTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.PVCS.PVCSSingleEntityTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.PVCS.PVCSTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Perforce.P4Base.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.SchemaValidatedTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.SourceSafe.BaseTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.StarTeam.LabelTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.StarTeam.StarTeamTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.StarTeam.TreeBasedTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.SurroundSCM.SSCMTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Svn.AbstractSvnTask.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.TryCatchTask.CatchElement.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Web.WebBase.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.When.html │ │ │ │ │ ├── NAnt.Contrib.Types.Assembly.html │ │ │ │ │ ├── NAnt.Contrib.Types.AssemblySet.html │ │ │ │ │ ├── NAnt.Contrib.Types.CodeStatsCount.html │ │ │ │ │ ├── NAnt.Contrib.Types.Filter.html │ │ │ │ │ ├── NAnt.Contrib.Types.GacReference.html │ │ │ │ │ ├── NAnt.Contrib.Types.PVCS.Entity.html │ │ │ │ │ ├── NAnt.Contrib.Types.SchemaElement.html │ │ │ │ │ └── NAnt.Contrib.Types.XmlSchemaReference.html │ │ │ │ ├── enums │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Host.HostAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.Reset.ResetAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.BizTalk.SendPort.SendPortAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.GacTask.ActionTypes.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.MsbuildTask.VerbosityLevel.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.PVCS.PVCSAddFilesTask.PVCSCopyMode.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.PVCS.PVCSUnlockTask.PVCSUnlockMode.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.RecordTask.ActionType.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.SchemeType.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.SourceSafe.FileTimestamp.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.VersionTask.BuildNumberAlgorithm.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.VersionTask.RevisionNumberAlgorithm.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Web.ApplicationPool.ApplicationPoolAction.html │ │ │ │ │ ├── NAnt.Contrib.Tasks.Web.CreateVirtualDirectory.AppType.html │ │ │ │ │ ├── NAnt.Contrib.Types.ClearCase.TypeKind.html │ │ │ │ │ ├── NAnt.Contrib.Types.NUnit2Report.ReportFormat.html │ │ │ │ │ └── NAnt.Contrib.Util.DelimiterStyle.html │ │ │ │ ├── filters │ │ │ │ │ └── index.html │ │ │ │ ├── functions │ │ │ │ │ ├── fileset.get-file-count.html │ │ │ │ │ ├── fileset.has-files.html │ │ │ │ │ ├── fileset.to-string.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── service.get-display-name.html │ │ │ │ │ ├── service.get-service-name.html │ │ │ │ │ ├── service.get-status.html │ │ │ │ │ ├── service.is-installed.html │ │ │ │ │ ├── service.is-paused.html │ │ │ │ │ ├── service.is-running.html │ │ │ │ │ └── service.is-stopped.html │ │ │ │ ├── images │ │ │ │ │ ├── arrow.gif │ │ │ │ │ ├── bullet.gif │ │ │ │ │ └── logo.gif │ │ │ │ ├── index.html │ │ │ │ ├── style.css │ │ │ │ ├── tasks │ │ │ │ │ ├── adsigetprop.html │ │ │ │ │ ├── adsisetprop.html │ │ │ │ │ ├── astyle.html │ │ │ │ │ ├── btsdeploy.html │ │ │ │ │ ├── btsexport.html │ │ │ │ │ ├── btshost.html │ │ │ │ │ ├── btsimport.html │ │ │ │ │ ├── btsorchestration.html │ │ │ │ │ ├── btsreset.html │ │ │ │ │ ├── btssendport.html │ │ │ │ │ ├── btsunbind.html │ │ │ │ │ ├── btsundeploy.html │ │ │ │ │ ├── cccatcs.html │ │ │ │ │ ├── cccheckin.html │ │ │ │ │ ├── cccheckout.html │ │ │ │ │ ├── cclock.html │ │ │ │ │ ├── ccmkelem.html │ │ │ │ │ ├── ccmklabel.html │ │ │ │ │ ├── ccmklbtype.html │ │ │ │ │ ├── ccrmtype.html │ │ │ │ │ ├── ccuncheckout.html │ │ │ │ │ ├── ccunlock.html │ │ │ │ │ ├── ccupdate.html │ │ │ │ │ ├── cd.html │ │ │ │ │ ├── checksum.html │ │ │ │ │ ├── choose.html │ │ │ │ │ ├── codestats.html │ │ │ │ │ ├── comregister.html │ │ │ │ │ ├── concat.html │ │ │ │ │ ├── deliisdir.html │ │ │ │ │ ├── depends.html │ │ │ │ │ ├── disco.html │ │ │ │ │ ├── fxcop.html │ │ │ │ │ ├── gac-install.html │ │ │ │ │ ├── gac-uninstall.html │ │ │ │ │ ├── gac.html │ │ │ │ │ ├── grep.html │ │ │ │ │ ├── hxcomp.html │ │ │ │ │ ├── hxreg.html │ │ │ │ │ ├── iisapppool.html │ │ │ │ │ ├── iisdirinfo.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── iniread.html │ │ │ │ │ ├── iniwrite.html │ │ │ │ │ ├── mgmtclassgen.html │ │ │ │ │ ├── mkiisdir.html │ │ │ │ │ ├── mkschanges.html │ │ │ │ │ ├── mkscheckpoint.html │ │ │ │ │ ├── mksget.html │ │ │ │ │ ├── msbuild.html │ │ │ │ │ ├── msi.html │ │ │ │ │ ├── msm.html │ │ │ │ │ ├── ngen.html │ │ │ │ │ ├── nunit2report.html │ │ │ │ │ ├── nunitreport.html │ │ │ │ │ ├── p4add.html │ │ │ │ │ ├── p4change.html │ │ │ │ │ ├── p4client.html │ │ │ │ │ ├── p4delete.html │ │ │ │ │ ├── p4edit.html │ │ │ │ │ ├── p4info.html │ │ │ │ │ ├── p4label.html │ │ │ │ │ ├── p4labelsync.html │ │ │ │ │ ├── p4print.html │ │ │ │ │ ├── p4reopen.html │ │ │ │ │ ├── p4revert.html │ │ │ │ │ ├── p4set.html │ │ │ │ │ ├── p4submit.html │ │ │ │ │ ├── p4sync.html │ │ │ │ │ ├── pvcsaddfiles.html │ │ │ │ │ ├── pvcsadduser.html │ │ │ │ │ ├── pvcsassigngroup.html │ │ │ │ │ ├── pvcschangegroup.html │ │ │ │ │ ├── pvcscreateproject.html │ │ │ │ │ ├── pvcsdelete.html │ │ │ │ │ ├── pvcsdeletegroup.html │ │ │ │ │ ├── pvcsdeletelabel.html │ │ │ │ │ ├── pvcsdeleteusers.html │ │ │ │ │ ├── pvcsget.html │ │ │ │ │ ├── pvcslabel.html │ │ │ │ │ ├── pvcslock.html │ │ │ │ │ ├── pvcspromotegroup.html │ │ │ │ │ ├── pvcsput.html │ │ │ │ │ ├── pvcsrenamelabel.html │ │ │ │ │ ├── pvcsunlock.html │ │ │ │ │ ├── record.html │ │ │ │ │ ├── regasm.html │ │ │ │ │ ├── scp.html │ │ │ │ │ ├── slingshot.html │ │ │ │ │ ├── sql.html │ │ │ │ │ ├── sscmbatch.html │ │ │ │ │ ├── sscmbranch.html │ │ │ │ │ ├── sscmcheckin.html │ │ │ │ │ ├── sscmcheckout.html │ │ │ │ │ ├── sscmfreeze.html │ │ │ │ │ ├── sscmget.html │ │ │ │ │ ├── sscmlabel.html │ │ │ │ │ ├── sscmunfreeze.html │ │ │ │ │ ├── stautolabel.html │ │ │ │ │ ├── stcheckin.html │ │ │ │ │ ├── stcheckout.html │ │ │ │ │ ├── stlabel.html │ │ │ │ │ ├── stlist.html │ │ │ │ │ ├── svn-checkout.html │ │ │ │ │ ├── svn-update.html │ │ │ │ │ ├── svn.html │ │ │ │ │ ├── trycatch.html │ │ │ │ │ ├── typedcollection.html │ │ │ │ │ ├── validatexml.html │ │ │ │ │ ├── vb6.html │ │ │ │ │ ├── version.html │ │ │ │ │ ├── vssadd.html │ │ │ │ │ ├── vsscheckin.html │ │ │ │ │ ├── vsscheckout.html │ │ │ │ │ ├── vssdelete.html │ │ │ │ │ ├── vssdiff.html │ │ │ │ │ ├── vssget.html │ │ │ │ │ ├── vsshistory.html │ │ │ │ │ ├── vsslabel.html │ │ │ │ │ ├── vssundocheckout.html │ │ │ │ │ ├── wsdl.html │ │ │ │ │ └── xsd.html │ │ │ │ └── types │ │ │ │ │ ├── entities.html │ │ │ │ │ ├── filterset.html │ │ │ │ │ └── index.html │ │ │ ├── license.html │ │ │ └── releasenotes.html │ │ ├── examples │ │ │ ├── NUnit2Report │ │ │ │ ├── Compagny.Argos-result.xml │ │ │ │ ├── Compagny.Argos.Test.xml │ │ │ │ ├── Mock-Test-Result.xml │ │ │ │ ├── NUnit-Result.xml │ │ │ │ └── default.build │ │ │ └── examples.build │ │ ├── license.txt │ │ └── readme.txt │ ├── nuget_package.build │ ├── opencover.build │ ├── ps │ │ └── update_metrics.ps1 │ └── version.build ├── default.build ├── fakes │ ├── .nuget │ │ └── packages.config │ ├── Target │ │ ├── MyInstanceClassCaller.cs │ │ ├── MyStaticClassCaller.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Target.csproj │ │ └── TimeWrapper.cs │ ├── TargetFakes │ │ ├── MyInstanceClass.cs │ │ ├── MyStaticClass.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── TargetFakes.csproj │ ├── TargetTests │ │ ├── Fakes │ │ │ ├── System.fakes │ │ │ ├── TargetFakes.fakes │ │ │ └── mscorlib.fakes │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ShimedClassTests.cs │ │ ├── TargetTests.csproj │ │ ├── TimeWrapperTests.cs │ │ └── vstest.opencover.cmd │ └── fakes.sln ├── main │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ ├── NuGet.targets │ │ └── packages.config │ ├── CodePulse.Bundle │ │ ├── AppIcon.ico │ │ ├── Bundle.wxs │ │ ├── CodePulse.Bundle.wixproj │ │ └── License.rtf │ ├── CodePulse.Client.Test │ │ ├── BufferPoolTests.cs │ │ ├── ClassIdentifierTests.cs │ │ ├── CodePulse.Client.Test.csproj │ │ ├── ConfigurationTests.cs │ │ ├── Connection.cs │ │ ├── ControlConnectionHandshakeTests.cs │ │ ├── ControlMessageProcessorTests.cs │ │ ├── ControllerTests.cs │ │ ├── DataConnectionHandshakeTests.cs │ │ ├── DefaultTraceAgentTests.cs │ │ ├── MessageProtocolTests.cs │ │ ├── MessageSenderManagerTests.cs │ │ ├── MethodIdentifierTests.cs │ │ ├── MethodSignatureTests.cs │ │ ├── PooledBufferServiceTests.cs │ │ ├── PooledMessageSenderTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Server.cs │ │ ├── StateManagerTests.cs │ │ └── packages.config │ ├── CodePulse.Client │ │ ├── Agent │ │ │ ├── DefaultTraceAgent.cs │ │ │ └── ITraceAgent.cs │ │ ├── CodePulse.Client.csproj │ │ ├── Config │ │ │ ├── RuntimeAgentConfiguration.cs │ │ │ └── StaticAgentConfiguration.cs │ │ ├── Connect │ │ │ ├── IConnection.cs │ │ │ └── SocketConnection.cs │ │ ├── Control │ │ │ ├── ConfigurationReader.cs │ │ │ ├── ControlMessageProcessor.cs │ │ │ ├── Controller.cs │ │ │ ├── IConfigurationHandler.cs │ │ │ ├── IConfigurationReader.cs │ │ │ ├── IControlMessageHandler.cs │ │ │ ├── IControlMessageProcessor.cs │ │ │ ├── IHeartbeatInformer.cs │ │ │ ├── IModeChangeListener.cs │ │ │ └── StateManager.cs │ │ ├── Data │ │ │ └── TraceDataCollector.cs │ │ ├── Errors │ │ │ ├── ErrorHandler.cs │ │ │ └── IErrorHandler.cs │ │ ├── Init │ │ │ ├── ControlConnectionHandshake.cs │ │ │ ├── DataConnectionHandshake.cs │ │ │ ├── HandshakeException.cs │ │ │ ├── IControlConnectionHandshake.cs │ │ │ └── IDataConnectionHandshake.cs │ │ ├── Instrumentation │ │ │ ├── ClassInformation.cs │ │ │ ├── Id │ │ │ │ ├── ClassIdentifier.cs │ │ │ │ └── MethodIdentifier.cs │ │ │ └── MethodInformation.cs │ │ ├── Message │ │ │ ├── AgentOperationMode.cs │ │ │ ├── BufferService.cs │ │ │ ├── IMessageProtocol.cs │ │ │ ├── MessageProtocol.cs │ │ │ ├── MessageSenderManager.cs │ │ │ ├── MessageTypes.cs │ │ │ ├── PooledBufferService.cs │ │ │ └── PooledMessageSender.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Protocol │ │ │ ├── IProtocolVersion.cs │ │ │ └── ProtocolVersion.cs │ │ ├── Queue │ │ │ ├── BufferPool.cs │ │ │ └── NamedMemoryStream.cs │ │ ├── Trace │ │ │ ├── IMethodSignatureBuilder.cs │ │ │ ├── ITraceDataCollector.cs │ │ │ ├── ITraceMessage.cs │ │ │ ├── MethodSignatureBuilder.cs │ │ │ └── MethodVisitTraceMessage.cs │ │ ├── Util │ │ │ ├── BinaryReaderExtensions.cs │ │ │ ├── BinaryWriterExtensions.cs │ │ │ ├── MemoryStreamExtensions.cs │ │ │ └── SocketFactory.cs │ │ └── packages.config │ ├── CodePulse.Console.Test │ │ ├── CodePulse.Console.Test.csproj │ │ ├── CommandLineParserTests.cs │ │ ├── OutputTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── CodePulse.Console │ │ ├── App.config │ │ ├── CodePulse.Console.csproj │ │ ├── CodePulse.DotNet.Console.ini │ │ ├── CommandLineParser.cs │ │ ├── EffectiveAccess │ │ │ ├── EffectiveAccess.cs │ │ │ ├── FileSecurityObject.cs │ │ │ ├── LICENSE.txt │ │ │ ├── NativeMethods.cs │ │ │ └── Utility │ │ │ │ ├── Helper.cs │ │ │ │ ├── SafeHandleEx.cs │ │ │ │ └── Win32.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ServiceControl.cs │ │ ├── ServiceProxy.cs │ │ ├── log4net.config │ │ └── packages.config │ ├── CodePulse.Framework.Test │ │ ├── CodePulse.Framework.Test.csproj │ │ ├── Persistence │ │ │ └── CodePulsePersistenceTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── CodePulse.Framework │ │ ├── CodePulse.Framework.csproj │ │ ├── Persistence │ │ │ └── CodePulsePersistence.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── CodePulse.Installer.x64 │ │ ├── AppIcon.ico │ │ ├── CodePulse.Installer.x64.wixproj │ │ ├── License.rtf │ │ ├── Licenses.wxs │ │ ├── Licenses │ │ │ ├── Autofac.Configuration │ │ │ │ └── LICENSE │ │ │ ├── Autofac │ │ │ │ └── LICENSE │ │ │ ├── Castle │ │ │ │ └── LICENSE │ │ │ ├── CommonServiceLocator │ │ │ │ └── LICENSE │ │ │ ├── CrashReporter.NET │ │ │ │ └── LICENSE │ │ │ ├── DotNetZip │ │ │ │ └── License.txt │ │ │ ├── Mono Tools │ │ │ │ └── LICENSE │ │ │ ├── NUnit │ │ │ │ ├── LICENSE.txt │ │ │ │ └── NOTICES.txt │ │ │ ├── Newtonsoft.Json │ │ │ │ └── LICENSE.md │ │ │ ├── SpecFlow │ │ │ │ └── LICENSE.txt │ │ │ ├── Unity.Abstractions │ │ │ │ └── LICENSE │ │ │ ├── Unity.Configuration │ │ │ │ └── LICENSE │ │ │ ├── Unity.Container │ │ │ │ └── LICENSE │ │ │ ├── Unity.Interception.Configuration │ │ │ │ └── LICENSE │ │ │ ├── Unity.Interception │ │ │ │ └── LICENSE │ │ │ ├── Unity.RegistrationByConvention │ │ │ │ └── LICENSE │ │ │ ├── Unity.ServiceLocation │ │ │ │ └── LICENSE │ │ │ ├── WiX Toolset │ │ │ │ └── LICENSE.TXT │ │ │ ├── cecil │ │ │ │ └── LICENSE.txt │ │ │ ├── log4net │ │ │ │ ├── LICENSE │ │ │ │ └── NOTICE │ │ │ ├── moq │ │ │ │ └── LICENSE │ │ │ └── xunit │ │ │ │ └── license.txt │ │ └── Product.wxs │ ├── CodePulse.Installer │ │ ├── AppIcon.ico │ │ ├── CodePulse.Installer.wixproj │ │ ├── License.rtf │ │ ├── Licenses.wxs │ │ ├── Licenses │ │ │ ├── Autofac.Configuration │ │ │ │ └── LICENSE │ │ │ ├── Autofac │ │ │ │ └── LICENSE │ │ │ ├── Castle │ │ │ │ └── LICENSE │ │ │ ├── CommonServiceLocator │ │ │ │ └── LICENSE │ │ │ ├── CrashReporter.NET │ │ │ │ └── LICENSE │ │ │ ├── DotNetZip │ │ │ │ └── License.txt │ │ │ ├── Mono Tools │ │ │ │ └── LICENSE │ │ │ ├── NUnit │ │ │ │ ├── LICENSE.txt │ │ │ │ └── NOTICES.txt │ │ │ ├── Newtonsoft.Json │ │ │ │ └── LICENSE.md │ │ │ ├── SpecFlow │ │ │ │ └── LICENSE.txt │ │ │ ├── Unity.Abstractions │ │ │ │ └── LICENSE │ │ │ ├── Unity.Configuration │ │ │ │ └── LICENSE │ │ │ ├── Unity.Container │ │ │ │ └── LICENSE │ │ │ ├── Unity.Interception.Configuration │ │ │ │ └── LICENSE │ │ │ ├── Unity.Interception │ │ │ │ └── LICENSE │ │ │ ├── Unity.RegistrationByConvention │ │ │ │ └── LICENSE │ │ │ ├── Unity.ServiceLocation │ │ │ │ └── LICENSE │ │ │ ├── WiX Toolset │ │ │ │ └── LICENSE.TXT │ │ │ ├── cecil │ │ │ │ └── LICENSE.txt │ │ │ ├── log4net │ │ │ │ ├── LICENSE │ │ │ │ └── NOTICE │ │ │ ├── moq │ │ │ │ └── LICENSE │ │ │ └── xunit │ │ │ │ └── license.txt │ │ └── Product.wxs │ ├── Icons │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 24.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 48.png │ │ ├── 512.png │ │ ├── 64.png │ │ ├── Icon.design │ │ ├── Icon.ico │ │ └── OpenCover.svg │ ├── OpenCover.3rdParty.Signer │ │ ├── App.config │ │ ├── CrashReporterSigner.cs │ │ ├── GendarmeSigner.cs │ │ ├── OpenCover.3rdParty.Signer.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SigningExtensions.cs │ │ └── packages.config │ ├── OpenCover.Console │ │ ├── CrashReporter │ │ │ ├── AnonymousData.cs │ │ │ └── SendRequestState.cs │ │ ├── OpenCover.Console.csproj │ │ ├── OpenCover.Console.ini │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ServiceEnvironmentManagement.cs │ │ ├── app.config │ │ └── packages.config │ ├── OpenCover.Documentation │ │ ├── Usage.pdf │ │ └── Usage.rtf │ ├── OpenCover.Extensions │ │ ├── OpenCover.Extensions.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RegisterStrategiesModule.cs │ │ ├── Strategy │ │ │ ├── TrackMSTestTestMethods.cs │ │ │ ├── TrackNUnitTestMethods.cs │ │ │ ├── TrackXUnitTestMethods.cs │ │ │ └── TrackedMethodStrategyBase.cs │ │ ├── app.config │ │ └── packages.config │ ├── OpenCover.Framework │ │ ├── Bootstrapper.cs │ │ ├── CommandLineParser.cs │ │ ├── CommandLineParserBase.cs │ │ ├── Communication │ │ │ ├── CommunicationManager.cs │ │ │ ├── MarshalWapper.cs │ │ │ ├── MessageHandler.cs │ │ │ └── Messages.cs │ │ ├── ExcludeCoverageAttribute.cs │ │ ├── Filter.cs │ │ ├── Filtering │ │ │ ├── AssemblyAndClassFilter.cs │ │ │ ├── FilterHelper.cs │ │ │ ├── FilterType.cs │ │ │ └── RegexFilter.cs │ │ ├── HelperExtensions.cs │ │ ├── ICommandLine.cs │ │ ├── IFilter.cs │ │ ├── Manager │ │ │ ├── IManagedCommunicationBlock.cs │ │ │ ├── IManagedMemoryBlock.cs │ │ │ ├── IMemoryManager.cs │ │ │ ├── IProfilerManager.cs │ │ │ ├── MemoryManager.cs │ │ │ └── ProfilerManager.cs │ │ ├── Model │ │ │ ├── BranchPoint.cs │ │ │ ├── Class.cs │ │ │ ├── ContextVisit.cs │ │ │ ├── CoverageSession.cs │ │ │ ├── File.cs │ │ │ ├── IDocumentReference.cs │ │ │ ├── IInstrumentationModelBuilder.cs │ │ │ ├── IInstrumentationModelBuilderFactory.cs │ │ │ ├── InstrumentationModelBuilder.cs │ │ │ ├── InstrumentationModelBuilderFactory.cs │ │ │ ├── InstrumentationPoint.cs │ │ │ ├── Method.cs │ │ │ ├── Module.cs │ │ │ ├── SequencePoint.cs │ │ │ ├── SkippedEntity.cs │ │ │ ├── SkippedMethod.cs │ │ │ ├── Summary.cs │ │ │ ├── SummarySkippedEntity.cs │ │ │ └── TrackedMethod.cs │ │ ├── OpenCover.Framework.csproj │ │ ├── Persistance │ │ │ ├── BasePersistance.cs │ │ │ ├── FilePersistance.cs │ │ │ └── IPersistance.cs │ │ ├── ProfilerRegistration.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Service │ │ │ ├── IProfilerCommunication.cs │ │ │ └── ProfilerCommunication.cs │ │ ├── Strategy │ │ │ ├── ITrackedMethodStrategy.cs │ │ │ ├── ITrackedMethodStrategyManager.cs │ │ │ └── TrackedMethodStrategyManager.cs │ │ ├── Symbols │ │ │ ├── CecilSymbolManager.cs │ │ │ ├── ISymbolManager.cs │ │ │ ├── SymbolFile.cs │ │ │ └── SymbolFileHelper.cs │ │ ├── Utility │ │ │ ├── CodeCoverageStringTextSource.cs │ │ │ ├── IPerfCounters.cs │ │ │ ├── IdentityHelper.cs │ │ │ ├── LogHelper.cs │ │ │ ├── PerfCounters.cs │ │ │ ├── SequencePointComparer.cs │ │ │ ├── SourceRepository.cs │ │ │ └── ThreadHelper.cs │ │ ├── app.config │ │ ├── log4net.config │ │ └── packages.config │ ├── OpenCover.Installer │ │ ├── Assets │ │ │ ├── sample.cmd │ │ │ └── sample64.cmd │ │ ├── Components.wxs │ │ ├── OpenCover.Installer.wixproj │ │ ├── Product.wxs │ │ └── app.config │ ├── OpenCover.Integration.Test │ │ ├── App.config │ │ ├── BranchTests.cs │ │ ├── ExceptionTests.cs │ │ ├── OpenCover.Integration.Test.csproj │ │ ├── ProfilerBaseFixture.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── OpenCover.MSBuild │ │ ├── OpenCover.MSBuild.csproj │ │ ├── OpenCover.cs │ │ ├── OpenCover.targets │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OpenCover.Profiler │ │ ├── AssemblyRegistry.cpp │ │ ├── AssemblyRegistry.h │ │ ├── CodeCoverage.cpp │ │ ├── CodeCoverage.h │ │ ├── CodeCoverage.rgs │ │ ├── CodeCoverage64.rgs │ │ ├── CodeCoverage_Callback.cpp │ │ ├── CodeCoverage_Cuckoo.cpp │ │ ├── CodeCoverage_ProfilerInfo.cpp │ │ ├── CodeCoverage_Support.cpp │ │ ├── CodeCoverage_Thread.cpp │ │ ├── CodeCoverage_Trace.cpp │ │ ├── CoverageInstrumentation.cpp │ │ ├── CoverageInstrumentation.h │ │ ├── ExceptionHandler.cpp │ │ ├── ExceptionHandler.h │ │ ├── HttpApplication.cpp │ │ ├── HttpApplication.h │ │ ├── InjectedType.cpp │ │ ├── InjectedType.h │ │ ├── Instruction.cpp │ │ ├── Instruction.h │ │ ├── Messages.h │ │ ├── Method.cpp │ │ ├── Method.h │ │ ├── MethodBuffer.h │ │ ├── NativeCallback.cpp │ │ ├── NativeCallback.h │ │ ├── OpenCover.Profiler.cpp │ │ ├── OpenCover.Profiler.def │ │ ├── OpenCover.Profiler.rc │ │ ├── OpenCover.Profiler.rgs │ │ ├── OpenCover.Profiler.vcxproj │ │ ├── OpenCover.Profiler.vcxproj.filters │ │ ├── OpenCoverProfiler.idl │ │ ├── Operations.cpp │ │ ├── Operations.h │ │ ├── ProfileBase.h │ │ ├── ProfilerCommunication.cpp │ │ ├── ProfilerCommunication.h │ │ ├── ProfilerInfo.cpp │ │ ├── ProfilerInfo.h │ │ ├── ProfilerInfoBase.h │ │ ├── PublicKeyTokenCreator.cpp │ │ ├── PublicKeyTokenCreator.h │ │ ├── ReadMe.txt │ │ ├── ReleaseTrace.h │ │ ├── Resource.h │ │ ├── ScopedLock.cpp │ │ ├── SharedMemory.cpp │ │ ├── SharedMemory.h │ │ ├── Synchronization.h │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── TraceContainerBase.cpp │ │ ├── TraceContainerBase.h │ │ ├── TraceContainerCallContext.cpp │ │ ├── TraceContainerCallContext.h │ │ ├── dllmain.cpp │ │ ├── dllmain.h │ │ ├── packages.config │ │ ├── sonar.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── xdlldata.c │ │ └── xdlldata.h │ ├── OpenCover.Simple.Target.Core.Embedded │ │ ├── OpenCover.Simple.Target.Core.Embedded.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OpenCover.Simple.Target.Core.Portable │ │ ├── OpenCover.Simple.Target.Core.Portable.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OpenCover.Simple.Target.Core │ │ ├── OpenCover.Simple.Target.Core.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OpenCover.Simple.Target │ │ ├── OpenCover.Simple.Target.csproj │ │ ├── Other.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── OpenCover.Specs │ │ ├── App.config │ │ ├── DotNetCore.feature │ │ ├── DotNetCore.feature.cs │ │ ├── OpenCover.Specs.csproj │ │ ├── Packaging.feature │ │ ├── Packaging.feature.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Steps │ │ │ ├── DotNetCoreSteps.cs │ │ │ ├── PackagingSteps.cs │ │ │ └── Utils.cs │ │ └── packages.config │ ├── OpenCover.Support │ │ ├── DomainHelper.cs │ │ ├── Fakes │ │ │ └── FakesHelper.cs │ │ ├── IDomainHelper.cs │ │ ├── OpenCover.Support.csproj │ │ ├── OpenCover.Support.snk │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── UITesting │ │ │ └── UITestingHelper.cs │ ├── OpenCover.Test.Profiler │ │ ├── AssemblyRegistryTest.cpp │ │ ├── ComBaseTest.h │ │ ├── InjectedTypeTest.cpp │ │ ├── InjectedTypeTestFixture.h │ │ ├── InstrumentationTest.cpp │ │ ├── MockICorProfilerInfo.h │ │ ├── MockIMetaDataAssemblyEmit.h │ │ ├── MockIMetaDataAssemblyImport.h │ │ ├── MockIMetaDataImport.h │ │ ├── MockIMethodMalloc.h │ │ ├── MockProfiler.h │ │ ├── MockProfilerHook.h │ │ ├── MockProfilerInfo.h │ │ ├── OpenCover.Test.Profiler.vcxproj │ │ ├── OpenCover.Test.Profiler.vcxproj.filters │ │ ├── ProfilerBaseTest.cpp │ │ ├── ProfilerInfoBaseTest.cpp │ │ ├── ProfilerInfoTest.cpp │ │ ├── ProfilerInstantiationTest.cpp │ │ ├── PublicKeyTokenCreatorTest.cpp │ │ ├── ReadMe.txt │ │ ├── RegressionTest.cpp │ │ ├── TestProfiler.h │ │ ├── TestProfilerInfo.h │ │ ├── TimerTest.cpp │ │ ├── TraceContainerBaseTest.cpp │ │ ├── TraceContainerCallContextTest.cpp │ │ ├── app.config │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── OpenCover.Test.Service │ │ ├── Grant-NetworkServiceExecuteAccess.ps1 │ │ ├── OpenCover.Test.Service.csproj │ │ ├── OpenCover.Test.Service.sln │ │ ├── ProjectInstaller.Designer.cs │ │ ├── ProjectInstaller.cs │ │ ├── ProjectInstaller.resx │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ScriptOutline.ps1 │ │ ├── Service.Designer.cs │ │ ├── Service.cs │ │ └── Service.resx │ ├── OpenCover.Test │ │ ├── App.config │ │ ├── Console │ │ │ └── OutputTests.cs │ │ ├── Extensions │ │ │ ├── RegisterStrategiesModuleTests.cs │ │ │ └── Strategy │ │ │ │ ├── TrackMSTestTestMethodsTests.cs │ │ │ │ ├── TrackNUnitTestMethodsTests.cs │ │ │ │ └── TrackXUnitTestMethodsTests.cs │ │ ├── Filtering │ │ │ └── FilterTypeTest.cs │ │ ├── Framework │ │ │ ├── BootstrapperTests.cs │ │ │ ├── CommandLineParserBaseTests.cs │ │ │ ├── CommandLineParserTests.cs │ │ │ ├── Communication │ │ │ │ ├── CommunicationManagerTests.cs │ │ │ │ └── MessageHandlerTests.cs │ │ │ ├── FilterTests.cs │ │ │ ├── Manager │ │ │ │ ├── MemoryManagerTests.cs │ │ │ │ └── ProfilerManagerTests.cs │ │ │ ├── Model │ │ │ │ ├── BranchPointTests.cs │ │ │ │ ├── InstrumentationModelBuilderFactoryTests.cs │ │ │ │ ├── InstrumentationModelBuilderTests.cs │ │ │ │ ├── InstrumentationPointTests.cs │ │ │ │ ├── MethodTest.cs │ │ │ │ ├── SequencePointTests.cs │ │ │ │ └── SummarySkippedEntityTests.cs │ │ │ ├── Persistance │ │ │ │ ├── BasePersistenceTests.cs │ │ │ │ └── FilePersistenceTests.cs │ │ │ ├── ProfilerRegistrationTests.cs │ │ │ ├── Service │ │ │ │ └── ProfilerCommunicationTests.cs │ │ │ ├── Strategy │ │ │ │ └── TrackedMethodStrategyManagerTests.cs │ │ │ ├── Symbols │ │ │ │ ├── BaseMdbTests.cs │ │ │ │ ├── CecilSymbolManagerMdbTests.cs │ │ │ │ ├── CecilSymbolManagerTests.cs │ │ │ │ ├── SymbolFileHelperMdbTests.cs │ │ │ │ └── SymbolFileHelperTests.cs │ │ │ └── Utility │ │ │ │ ├── CodeCoverageStringTextSourceTest.cs │ │ │ │ ├── PerfCountersTests.cs │ │ │ │ ├── SequencePointComparerTest.cs │ │ │ │ └── SourceRepositoryTest.cs │ │ ├── Integration │ │ │ ├── SimpleBranchTests.cs │ │ │ ├── SimpleExceptionTests.cs │ │ │ └── ThreadingTests.cs │ │ ├── MoqFramework │ │ │ ├── UnityAutoMockContainerBase.cs │ │ │ ├── UnityAutoMockContainerBaseTests.cs │ │ │ └── UnityAutoMockContainerTests.cs │ │ ├── OpenCover.Test.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Samples │ │ │ ├── ComplexNUnit.cs │ │ │ ├── Library1.dll │ │ │ ├── Library1.fs │ │ │ ├── Library1.pdb │ │ │ ├── Library2.dll │ │ │ ├── Library2.fs │ │ │ ├── Library2.pdb │ │ │ ├── ReadMe.txt │ │ │ ├── Samples.cs │ │ │ ├── SimpleMsTest.cs │ │ │ ├── SimpleNUnit.cs │ │ │ └── SimpleXUnit.cs │ │ ├── Support │ │ │ ├── FakesHelperTests.cs │ │ │ └── UITestingHelperTests.cs │ │ └── packages.config │ ├── OpenCover.UITest │ │ ├── LaunchSimpleTest.cs │ │ ├── OpenCover.UITest.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OpenCover.sln │ ├── Opencover.Packages │ │ ├── chocolatey │ │ │ ├── opencover.portable │ │ │ │ ├── opencover.portable.nuspec │ │ │ │ └── tools │ │ │ │ │ └── chocolateyInstall.ps1.tmp │ │ │ └── opencover │ │ │ │ ├── OpenCover.nuspec │ │ │ │ └── tools │ │ │ │ └── chocolateyInstall.ps1.tmp │ │ └── nuget │ │ │ └── opencover │ │ │ ├── OpenCover.nuspec │ │ │ └── readme.txt │ ├── cmdline │ │ ├── DogFood.proj │ │ ├── OpenCover.Test.nunit │ │ ├── chow-down.cmd │ │ ├── dogfood.cmd │ │ ├── dogfood64.cmd │ │ ├── dogfood_coverbytest.cmd │ │ ├── dogfood_exattr.cmd │ │ ├── dogfood_exfile.cmd │ │ ├── dogfood_filter.cmd │ │ ├── dogfood_msbuild.cmd │ │ ├── dogfood_nunit.cmd │ │ ├── dogfood_oldschool.cmd │ │ ├── dogfood_path32.cmd │ │ ├── dogfood_regex.cmd │ │ ├── dogfood_shadow.cmd │ │ ├── dogfood_threshold.cmd │ │ ├── mstest.opencover.cmd │ │ ├── opencover_merge.cmd │ │ ├── opencovertests.cmd │ │ ├── opencovertests64.cmd │ │ ├── partcover.cmd │ │ ├── pedigree.cmd │ │ ├── pedigree_threshold.cmd │ │ ├── report_coverage.cmd │ │ ├── silverlight.cmd │ │ ├── uitest.opencover.cmd │ │ ├── vstest.opencover.cmd │ │ └── xunit.opencover.cmd │ ├── packages │ │ └── repositories.config │ └── transform │ │ ├── simple_report.xslt │ │ └── transform.ps1 ├── samples │ ├── OpenCover.Samples.CS │ │ ├── OpenCover.Samples.CS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TryExceptionTarget.cs │ │ └── TryFinallyTarget.cs │ ├── OpenCover.Samples.Framework │ │ ├── ITestExceptionQuery.cs │ │ ├── OpenCover.Samples.Framework.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── OpenCover.Samples.IL │ │ ├── OpenCover.Samples.IL.cmd │ │ ├── OpenCover.Samples.IL.il │ │ └── OpenCover.Samples.IL.res │ ├── OpenCover.Samples.Service │ │ ├── CustomExceptionQuery.cs │ │ ├── OpenCover.Samples.Service.csproj │ │ ├── Program.cs │ │ ├── ProjectInstaller.Designer.cs │ │ ├── ProjectInstaller.cs │ │ ├── ProjectInstaller.resx │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Service1.Designer.cs │ │ └── Service1.cs │ ├── OpenCover.Samples.VB │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ ├── OpenCover.Samples.VB.vbproj │ │ └── TryFilterTarget.vb │ ├── OpenCover.Samples.sln │ ├── SampleSln │ │ ├── .nuget │ │ │ └── packages.config.tmp │ │ ├── Bom │ │ │ ├── Bom.csproj │ │ │ ├── BomManager.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── BomSample.sln │ │ ├── BomTest │ │ │ ├── BomManagerTests.cs │ │ │ ├── BomTest.csproj │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ ├── coverage.bat.tmp │ │ └── packages │ │ │ └── repositories.config │ ├── WCFServiceTest │ │ ├── CoverageTests.sln │ │ ├── TestCoverageTests │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Service References │ │ │ │ └── ServiceReference1 │ │ │ │ │ ├── Reference.cs │ │ │ │ │ ├── Reference.svcmap │ │ │ │ │ ├── Service1.disco │ │ │ │ │ ├── Service1.wsdl │ │ │ │ │ ├── Service1.xsd │ │ │ │ │ ├── Service11.xsd │ │ │ │ │ ├── Service12.xsd │ │ │ │ │ ├── TestCoverageTests.ServiceReference1.CompositeType.datasource │ │ │ │ │ ├── configuration.svcinfo │ │ │ │ │ └── configuration91.svcinfo │ │ │ ├── TestCoverageTests.csproj │ │ │ └── app.config │ │ └── TestWCFServiceCoverage │ │ │ ├── IService1.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Service1.svc │ │ │ ├── Service1.svc.cs │ │ │ ├── TestWCFServiceCoverage.csproj │ │ │ ├── TestWCFServiceCoverage.csproj.user │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ └── Web.config │ └── bin │ │ ├── OpenCover.Samples.CS.dll │ │ ├── OpenCover.Samples.CS.pdb │ │ ├── OpenCover.Samples.Framework.dll │ │ ├── OpenCover.Samples.Framework.pdb │ │ ├── OpenCover.Samples.IL.dll │ │ ├── OpenCover.Samples.IL.pdb │ │ ├── OpenCover.Samples.VB.dll │ │ ├── OpenCover.Samples.VB.pdb │ │ └── OpenCover.Samples.VB.xml ├── samplexml │ └── opencovertests.xml └── tools │ ├── 7-Zip │ ├── 7-zip.chm │ ├── 7za.exe │ ├── copying.txt │ ├── license.txt │ └── readme.txt │ ├── CorrectFileCaseOnCppCoverage.ps1 │ ├── CrashReporterSigned │ └── CrashReporter.NET.dll │ ├── CxxSonarQubeMsbuidRunner.zip │ ├── Moq.contrib │ └── UnityAutoMockContainer.cs │ ├── OpenCppCoverage │ ├── CppCoverage.dll │ ├── Exporter.dll │ ├── FileFilter.dll │ ├── OpenCppCoverage.exe │ ├── Template │ │ ├── MainTemplate.html │ │ ├── SourceTemplate.html │ │ └── third-party │ │ │ ├── JQuery │ │ │ └── jquery-1.11.1.min.js │ │ │ ├── RGraph │ │ │ ├── libraries │ │ │ │ ├── RGraph.common.core.js │ │ │ │ ├── RGraph.common.dynamic.js │ │ │ │ ├── RGraph.common.tooltips.js │ │ │ │ └── RGraph.pie.js │ │ │ └── license.txt │ │ │ ├── css │ │ │ ├── style.css │ │ │ └── table-images │ │ │ │ ├── botleft.png │ │ │ │ ├── botright.png │ │ │ │ ├── left.png │ │ │ │ └── right.png │ │ │ └── google-code-prettify │ │ │ ├── prettify-CppCoverage.css │ │ │ ├── prettify.js │ │ │ └── run_prettify.js │ ├── Tools.dll │ ├── boost_chrono-vc140-mt-1_59.dll │ ├── boost_date_time-vc140-mt-1_59.dll │ ├── boost_filesystem-vc140-mt-1_59.dll │ ├── boost_iostreams-vc140-mt-1_59.dll │ ├── boost_locale-vc140-mt-1_59.dll │ ├── boost_log-vc140-mt-1_59.dll │ ├── boost_program_options-vc140-mt-1_59.dll │ ├── boost_regex-vc140-mt-1_59.dll │ ├── boost_system-vc140-mt-1_59.dll │ ├── boost_thread-vc140-mt-1_59.dll │ ├── dbgcore.dll │ ├── dbghelp.dll │ ├── libctemplate.dll │ └── template_test_util_test.dll │ ├── OpenCppCoverageToGenCoverage.xsl │ ├── README.txt │ ├── RunSxS │ ├── Release │ │ ├── RunSxS.exe │ │ └── RunSxS.pdb │ ├── RunSxS.cpp │ ├── RunSxS.sln │ ├── RunSxS.txt │ ├── RunSxS.vcxproj │ └── x64 │ │ └── Release │ │ ├── RunSxS.exe │ │ └── RunSxS.pdb │ ├── atlsvr.9.0.70425.zip │ ├── gmock-1.7.0 │ ├── gmock-1.7.0.zip │ ├── gtest │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── include │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-cardinalities.h │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-actions.h.pump │ │ │ ├── gmock-generated-function-mockers.h │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ ├── gmock-generated-matchers.h │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ ├── gmock-generated-nice-strict.h │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ ├── gmock-matchers.h │ │ │ ├── gmock-more-actions.h │ │ │ ├── gmock-more-matchers.h │ │ │ ├── gmock-spec-builders.h │ │ │ ├── gmock.h │ │ │ └── internal │ │ │ ├── gmock-generated-internal-utils.h │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ ├── gmock-internal-utils.h │ │ │ └── gmock-port.h │ └── src │ │ ├── gmock-all.cc │ │ ├── gmock-cardinalities.cc │ │ ├── gmock-internal-utils.cc │ │ ├── gmock-matchers.cc │ │ ├── gmock-spec-builders.cc │ │ ├── gmock.cc │ │ └── gmock_main.cc │ └── sonar-scanner-msbuild-4.0.0.821.zip ├── hq └── src │ ├── main │ └── scala │ │ └── com │ │ └── secdec │ │ └── bytefrog │ │ └── hq │ │ ├── agent │ │ ├── AgentController.scala │ │ └── AgentStateManager.scala │ │ ├── config │ │ ├── AgentConfiguration.scala │ │ ├── Configuration.scala │ │ ├── HQConfiguration.scala │ │ ├── MonitorConfiguration.scala │ │ └── TraceSettings.scala │ │ ├── connect │ │ ├── ClientGreeter.scala │ │ ├── ControlConnection.scala │ │ ├── DataConnection.scala │ │ ├── SocketServer.scala │ │ ├── TraceControlConnector.scala │ │ └── TraceRegistry.scala │ │ ├── data │ │ ├── DataConnectionController.scala │ │ ├── TraceSegmentEvent.scala │ │ ├── collection │ │ │ ├── DataCollector.scala │ │ │ └── DataOrdering.scala │ │ └── processing │ │ │ ├── DataProcessor.scala │ │ │ └── DataRouter.scala │ │ ├── errors │ │ ├── ApplicationErrorController.scala │ │ ├── Error.scala │ │ └── TraceErrorController.scala │ │ ├── monitor │ │ ├── AgentHealthMonitor.scala │ │ ├── DataRouterMonitor.scala │ │ ├── FileSystemMonitor.scala │ │ ├── HealthMonitor.scala │ │ ├── TraceComponent.scala │ │ └── TraceComponentStatus.scala │ │ ├── protocol │ │ ├── ControlMessage.scala │ │ ├── ControlMessageReader.scala │ │ ├── ControlMessageReaderV1.scala │ │ ├── ControlMessageSender.scala │ │ ├── ControlMessageSenderBase.scala │ │ ├── ControlMessageSenderV1.scala │ │ ├── ControlMessageSenderV2.scala │ │ ├── DataMessage.scala │ │ ├── DataMessageHandler.scala │ │ ├── DataMessageParser.scala │ │ ├── DataMessageParserV1.scala │ │ ├── DataMessageParserV2.scala │ │ ├── DefaultProtocolHelper.scala │ │ ├── IO.scala │ │ └── ProtocolHelper.scala │ │ ├── trace │ │ ├── HasTraceSegmentBuilder.scala │ │ ├── Trace.scala │ │ ├── TraceDataManager.scala │ │ ├── TracePlayerManager.scala │ │ ├── TraceSegmentAccess.scala │ │ ├── TraceSegmentManager.scala │ │ ├── TraceStatus.scala │ │ └── players │ │ │ └── LoopPlayer.scala │ │ └── util │ │ ├── Completable.scala │ │ ├── CompletionHooks.scala │ │ ├── DaemonThreadFactory.scala │ │ ├── DoOnce.scala │ │ ├── LoopingThread.scala │ │ ├── NumberUnits.scala │ │ ├── Shutdown.scala │ │ ├── Startable.scala │ │ └── WeakMap.scala │ └── test │ └── scala │ └── com │ └── secdec │ └── bytefrog │ └── hq │ ├── agent │ └── test │ │ └── AgentStateManagerSpec.scala │ ├── connect │ └── test │ │ └── ClientGreeterSpec.scala │ ├── protocol │ └── test │ │ └── ControlMessageReaderV1Spec.scala │ └── testutil │ └── MockedSendingConnection.scala ├── installers ├── .gitignore ├── DotNet-Tracer │ ├── build.ps1 │ └── download-files │ │ ├── CodePulse.DotNet.Tracer.Installer.html │ │ └── img │ │ ├── CodePulse.DotNet.Tracer.Installer.Setup.png │ │ └── icon.png ├── Licenses │ ├── codepulse │ │ ├── ASM │ │ │ └── License.txt │ │ ├── DependencyCheck │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ ├── akka-actor │ │ │ └── LICENSE │ │ ├── astam-correlator │ │ │ └── license.txt │ │ ├── commons-compress │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ ├── commons-io │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ ├── commons-lang3 │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ ├── concurrentlinkedhashmap-lru │ │ │ └── LICENSE-2.0.txt │ │ ├── dispatch-core │ │ │ └── LICENSE.txt │ │ ├── groovy-all │ │ │ ├── ANTLR-LICENSE.txt │ │ │ ├── ASM-LICENSE.txt │ │ │ ├── CLI-LICENSE.txt │ │ │ ├── JSR223-LICENSE.txt │ │ │ ├── LICENSE.txt │ │ │ └── NOTICE.txt │ │ ├── h2 │ │ │ ├── License-EPL-1.0.txt │ │ │ └── License-MPL.txt │ │ ├── jackson-core │ │ │ ├── LICENSE │ │ │ └── NOTICE │ │ ├── jackson-module-scala │ │ │ └── LICENSE │ │ ├── java-parser │ │ │ └── license.txt │ │ ├── javax.servlet-api │ │ │ └── LICENSE.txt │ │ ├── jcl-over-slf4j │ │ │ └── License.txt │ │ ├── jetty-orbit │ │ │ └── License.txt │ │ ├── jetty-webapp │ │ │ └── License.txt │ │ ├── jna │ │ │ ├── LGPL2.1 │ │ │ ├── LICENSE │ │ │ ├── LICENSE.ASL │ │ │ └── LICENSE.LGPL │ │ ├── jsonb │ │ │ └── LICENCE.txt │ │ ├── jsonp │ │ │ └── LICENSE.md │ │ ├── juniversalchardet │ │ │ └── MPL-1.1.txt │ │ ├── lift-webkit │ │ │ └── LICENSE.txt │ │ ├── logback-classic │ │ │ └── License.txt │ │ ├── minlog │ │ │ └── license.txt │ │ ├── open-jdk │ │ │ └── license.txt │ │ ├── openj9 │ │ │ └── LICENSE.txt │ │ ├── paranamer │ │ │ └── LICENSE.txt │ │ ├── reactive-core │ │ │ └── LICENSE.txt │ │ ├── sbt │ │ │ ├── LICENSE │ │ │ └── NOTICE │ │ ├── scala │ │ │ ├── License-BSD-3-Clause.txt │ │ │ └── License.txt │ │ ├── scalactic │ │ │ └── License.txt │ │ ├── scalamock │ │ │ └── LICENCE │ │ ├── scalatest │ │ │ └── License.txt │ │ ├── slick │ │ │ └── LICENSE.txt │ │ └── yasson │ │ │ └── LICENSE │ └── tracers │ │ └── java │ │ ├── groovy-all │ │ ├── ANTLR-LICENSE.txt │ │ ├── ASM-LICENSE.txt │ │ ├── CLI-LICENSE.txt │ │ ├── JSR223-LICENSE.txt │ │ ├── LICENSE.txt │ │ └── NOTICE.txt │ │ ├── jcl-over-slf4j │ │ └── License.txt │ │ ├── jsonb │ │ └── LICENCE.txt │ │ ├── jsonp │ │ └── LICENSE.md │ │ ├── logback-classic │ │ └── License.txt │ │ ├── open-jdk │ │ └── license.txt │ │ ├── openj9 │ │ └── LICENSE.txt │ │ └── yasson │ │ └── LICENSE ├── Linux │ └── build.ps1 ├── Scripts │ ├── common.ps1 │ ├── init.ps1 │ ├── sbt.ps1 │ └── text.ps1 ├── Tools │ └── ZipFile │ │ ├── bin │ │ ├── ZipFile.exe │ │ ├── ZipFile.exe.config │ │ └── ZipFile.pdb │ │ └── src │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ZipFile.csproj ├── Windows │ ├── CodePulse.Installer.Win64 │ │ ├── AppIcon.ico │ │ ├── CodePulse.Installer.Win64.wixproj │ │ ├── CodePulse.Installer.dll │ │ ├── License.rtf │ │ ├── Product.wxs │ │ ├── Win64CodePulse.wxs │ │ ├── Win64SymbolService.wxs │ │ ├── Win64Tracers.wxs │ │ ├── WixUIBannerBmp.bmp │ │ └── WixUIDialogBmp.bmp │ ├── CodePulse.Installer │ │ ├── CodePulse.Installer.cpp │ │ ├── CodePulse.Installer.def │ │ ├── CodePulse.Installer.vcxproj │ │ ├── CodePulse.Installer.vcxproj.filters │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Windows.sln │ ├── build.ps1 │ └── heat.ps1 ├── build.ps1 └── macOS │ └── build.ps1 ├── project ├── BuildKeys.scala ├── Dependencies.scala ├── DependencyFetcher.scala ├── Distributor.scala ├── FetchCache.scala ├── VersionSystem.scala ├── build.properties ├── plugins.sbt ├── project │ └── Build.scala └── sbt-betterzip │ ├── readme.md │ ├── sbt-betterzip.sbt │ └── src │ └── main │ └── scala │ └── com │ └── avi │ └── sbt │ └── betterzip │ └── BetterZip.scala ├── publish-symbol-service.ps1 ├── readme.md ├── shared └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── codedx │ │ │ └── codepulse │ │ │ └── agent │ │ │ └── common │ │ │ ├── config │ │ │ ├── RuntimeAgentConfigurationV1.java │ │ │ └── StaticAgentConfiguration.java │ │ │ ├── connect │ │ │ ├── Connection.java │ │ │ └── SocketConnection.java │ │ │ ├── message │ │ │ ├── AgentOperationMode.java │ │ │ ├── MessageConstantsV1.java │ │ │ ├── MessageConstantsV3.java │ │ │ ├── MessageConstantsV4.java │ │ │ ├── MessageProtocol.java │ │ │ ├── MessageProtocolV1.java │ │ │ ├── MessageProtocolV2.java │ │ │ ├── MessageProtocolV3.java │ │ │ ├── MessageProtocolV4.java │ │ │ └── NotSupportedException.java │ │ │ ├── queue │ │ │ ├── BufferPool.java │ │ │ ├── ConcurrentLinkedBlockingQueue.java │ │ │ └── DataBufferOutputStream.java │ │ │ └── util │ │ │ └── StringUtil.java │ └── scala │ │ └── com │ │ └── codedx │ │ └── codepulse │ │ └── logging │ │ └── Loggable.scala │ └── test │ └── scala │ └── com │ └── secdec │ └── bytefrog │ └── common │ ├── config │ └── test │ │ ├── AgentConfigurationSuite.scala │ │ └── StaticAgentConfigurationSuite.scala │ ├── message │ └── test │ │ └── MessageProtocolV1Suite.scala │ └── queue │ └── test │ └── BufferPoolSpec.scala └── tools ├── Anolis.Resourcer-0.9.zip └── reporting └── ExportFileReport.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/.gitignore -------------------------------------------------------------------------------- /.sbtrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/.sbtrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/LICENSE -------------------------------------------------------------------------------- /agent/src/main/java/com/codedx/codepulse/agent/TraceAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/agent/src/main/java/com/codedx/codepulse/agent/TraceAgent.java -------------------------------------------------------------------------------- /agent/src/main/java/com/codedx/codepulse/agent/trace/Trace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/agent/src/main/java/com/codedx/codepulse/agent/trace/Trace.java -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bytefrog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/.gitignore -------------------------------------------------------------------------------- /bytefrog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/.travis.yml -------------------------------------------------------------------------------- /bytefrog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/LICENSE -------------------------------------------------------------------------------- /bytefrog/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/build.sbt -------------------------------------------------------------------------------- /bytefrog/project.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/project.sublime-project -------------------------------------------------------------------------------- /bytefrog/project/Dependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/project/Dependencies.scala -------------------------------------------------------------------------------- /bytefrog/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.16 -------------------------------------------------------------------------------- /bytefrog/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/readme.md -------------------------------------------------------------------------------- /bytefrog/sourcemap-parser/README.md: -------------------------------------------------------------------------------- 1 | This code is from: https://github.com/ikysil/sourcemap -------------------------------------------------------------------------------- /bytefrog/sourcemap-parser/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/bytefrog/sourcemap-parser/license.txt -------------------------------------------------------------------------------- /codepulse.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse.sublime-project -------------------------------------------------------------------------------- /codepulse/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/application.conf -------------------------------------------------------------------------------- /codepulse/src/main/resources/default.props: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codepulse/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/logback.xml -------------------------------------------------------------------------------- /codepulse/src/main/resources/production.default.props: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/CodePulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/CodePulse.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/Downloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/Downloader.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/UpdateController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/UpdateController.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/branding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/branding.css -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/codedx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/codedx-logo.png -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/common.css -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/common.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/common/desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/common/desktop.css -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/pages/index/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/pages/index/index.css -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/pages/projects/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/pages/projects/API.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/pages/projects/TreeData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/pages/projects/TreeData.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/pages/projects/editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/pages/projects/editable.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/pages/projects/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/pages/projects/projects.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/thirdparty/codemirror/bin/lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | process.exit(require("../test/lint").ok ? 0 : 1); 4 | -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/thirdparty/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/thirdparty/d3/d3.min.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/widgets/overlay/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/widgets/overlay/overlay.js -------------------------------------------------------------------------------- /codepulse/src/main/resources/toserve/widgets/updates/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/resources/toserve/widgets/updates/updates.js -------------------------------------------------------------------------------- /codepulse/src/main/scala/bootstrap/liftweb/AppCleanup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/bootstrap/liftweb/AppCleanup.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/bootstrap/liftweb/Boot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/bootstrap/liftweb/Boot.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/bootstrap/liftweb/BootSnippets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/bootstrap/liftweb/BootSnippets.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/bootstrap/liftweb/Sitemap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/bootstrap/liftweb/Sitemap.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/bootstrap/liftweb/SnippetRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/bootstrap/liftweb/SnippetRequest.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/com/secdec/codepulse/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/com/secdec/codepulse/package.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/com/secdec/codepulse/util/Actor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/com/secdec/codepulse/util/Actor.scala -------------------------------------------------------------------------------- /codepulse/src/main/scala/com/secdec/codepulse/util/Timing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/scala/com/secdec/codepulse/util/Timing.scala -------------------------------------------------------------------------------- /codepulse/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /codepulse/src/main/webapp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/icon.png -------------------------------------------------------------------------------- /codepulse/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/index.html -------------------------------------------------------------------------------- /codepulse/src/main/webapp/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/projects.html -------------------------------------------------------------------------------- /codepulse/src/main/webapp/templates-hidden/Notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/templates-hidden/Notifications.html -------------------------------------------------------------------------------- /codepulse/src/main/webapp/templates-hidden/ProjectList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/templates-hidden/ProjectList.html -------------------------------------------------------------------------------- /codepulse/src/main/webapp/templates-hidden/ProjectSwitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/templates-hidden/ProjectSwitcher.html -------------------------------------------------------------------------------- /codepulse/src/main/webapp/templates-hidden/branding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/templates-hidden/branding.html -------------------------------------------------------------------------------- /codepulse/src/main/webapp/templates-hidden/desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/codepulse/src/main/webapp/templates-hidden/desktop.html -------------------------------------------------------------------------------- /distrib/common/app/byline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/byline.js -------------------------------------------------------------------------------- /distrib/common/app/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/icon.icns -------------------------------------------------------------------------------- /distrib/common/app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/icon.ico -------------------------------------------------------------------------------- /distrib/common/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/icon.png -------------------------------------------------------------------------------- /distrib/common/app/log.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/log.css -------------------------------------------------------------------------------- /distrib/common/app/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/log.html -------------------------------------------------------------------------------- /distrib/common/app/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/log.js -------------------------------------------------------------------------------- /distrib/common/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/main.js -------------------------------------------------------------------------------- /distrib/common/app/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/spinner.css -------------------------------------------------------------------------------- /distrib/common/app/startup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/startup.css -------------------------------------------------------------------------------- /distrib/common/app/startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/startup.html -------------------------------------------------------------------------------- /distrib/common/app/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/app/startup.js -------------------------------------------------------------------------------- /distrib/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/common/package.json -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/jetty-annotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/jetty-annotations.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/jetty-deploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/jetty-deploy.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/jetty-http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/jetty-http.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/jetty-plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/jetty-plus.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/jetty-webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/jetty-webapp.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/jetty.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/etc/webdefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/etc/webdefault.xml -------------------------------------------------------------------------------- /distrib/jetty-conf/start.d/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/start.d/README.TXT -------------------------------------------------------------------------------- /distrib/jetty-conf/start.d/http.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/start.d/http.ini -------------------------------------------------------------------------------- /distrib/jetty-conf/start.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/distrib/jetty-conf/start.ini -------------------------------------------------------------------------------- /dotnet-symbol-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/.gitignore -------------------------------------------------------------------------------- /dotnet-symbol-service/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/LICENSE -------------------------------------------------------------------------------- /dotnet-symbol-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/README.md -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService.sln -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService/Model/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService/Model/MethodInfo.cs -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService/Model/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService/Model/Modifiers.cs -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService/Program.cs -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService/Startup.cs -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService/SymbolService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService/SymbolService.csproj -------------------------------------------------------------------------------- /dotnet-symbol-service/SymbolService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-symbol-service/SymbolService/appsettings.json -------------------------------------------------------------------------------- /dotnet-tracer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/.gitattributes -------------------------------------------------------------------------------- /dotnet-tracer/.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/.github/contributing.md -------------------------------------------------------------------------------- /dotnet-tracer/.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/.github/issue_template.md -------------------------------------------------------------------------------- /dotnet-tracer/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/.github/pull_request_template.md -------------------------------------------------------------------------------- /dotnet-tracer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/.gitignore -------------------------------------------------------------------------------- /dotnet-tracer/Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/Build.bat -------------------------------------------------------------------------------- /dotnet-tracer/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/License.md -------------------------------------------------------------------------------- /dotnet-tracer/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/License.rtf -------------------------------------------------------------------------------- /dotnet-tracer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/README.md -------------------------------------------------------------------------------- /dotnet-tracer/ReleaseNotes.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/ReleaseNotes.tmp -------------------------------------------------------------------------------- /dotnet-tracer/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/appveyor.yml -------------------------------------------------------------------------------- /dotnet-tracer/build/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/README.txt -------------------------------------------------------------------------------- /dotnet-tracer/build/Version/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/Version/.gitignore -------------------------------------------------------------------------------- /dotnet-tracer/build/Version/AssemblyCopyright.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/Version/AssemblyCopyright.cs -------------------------------------------------------------------------------- /dotnet-tracer/build/Version/AssemblyCopyright.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/Version/AssemblyCopyright.tt -------------------------------------------------------------------------------- /dotnet-tracer/build/Version/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/Version/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/build/Version/opencover.3rdparty.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/Version/opencover.3rdparty.snk -------------------------------------------------------------------------------- /dotnet-tracer/build/Version/opencover.test.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/Version/opencover.test.snk -------------------------------------------------------------------------------- /dotnet-tracer/build/coverity/coverity_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/coverity/coverity_model.c -------------------------------------------------------------------------------- /dotnet-tracer/build/environment.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/environment.build -------------------------------------------------------------------------------- /dotnet-tracer/build/installer.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/installer.build -------------------------------------------------------------------------------- /dotnet-tracer/build/metrics.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/metrics.build -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/COPYING.txt -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/README.txt -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Core.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Core.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.DotNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.DotNetTasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.DotNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.DotNetTasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.MSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.MSNetTasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.MSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.MSNetTasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit1Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit1Tasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit1Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit1Tasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit2Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit2Tasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit2Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.NUnit2Tasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.VSNetTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.VSNetTasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.VSNetTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.VSNetTasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Win32Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Win32Tasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Win32Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.Win32Tasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.exe -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.exe.config -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/NAnt.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/log4net.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/bin/scvs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/bin/scvs.exe -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/images/arrow.gif -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/images/bullet.gif -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/images/logo.gif -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/index.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/style.css -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/al.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/al.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/attrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/attrib.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/aximp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/aximp.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/call.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/cl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/cl.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/copy.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/csc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/csc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/cvs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/cvs.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/delete.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/echo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/echo.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/exec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/exec.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/fail.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/get.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/gunzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/gunzip.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/if.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/if.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ifnot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ifnot.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ilasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ilasm.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ildasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ildasm.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/index.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/jsc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/jsc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/lib.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/link.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/mail.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/mc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/mc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/midl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/midl.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/mkdir.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/move.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/move.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/nant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/nant.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ndoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/ndoc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/nunit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/nunit.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/nunit2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/nunit2.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/rc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/rc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/regasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/regasm.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/regex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/regex.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/resgen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/resgen.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/script.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/setenv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/setenv.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/sleep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/sleep.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/style.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tar.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tlbexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tlbexp.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tlbimp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tlbimp.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/touch.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tstamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/tstamp.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/untar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/untar.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/unzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/unzip.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/vbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/vbc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/vjc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/vjc.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/tasks/zip.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/dirset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/dirset.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/index.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/path.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/help/types/proxy.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/license.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/releasenotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/releasenotes.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/doc/sdk/NAnt-SDK.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/doc/sdk/NAnt-SDK.chm -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/examples/HelloWorld/HelloWorld.js: -------------------------------------------------------------------------------- 1 | print("Hello World using JScript.NET"); -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/examples/Simple/Simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/examples/Simple/Simple.cs -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/examples/examples.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/examples/examples.build -------------------------------------------------------------------------------- /dotnet-tracer/build/nant-0.91-alpha2/schema/nant.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nant-0.91-alpha2/schema/nant.xsd -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/CollectionGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/CollectionGen.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/Interop.StarTeam.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/Interop.StarTeam.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/MSITaskErrors.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/MSITaskErrors.mst -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/MSITaskTemplate.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/MSITaskTemplate.msi -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/MSMTaskErrors.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/MSMTaskErrors.mst -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/MSMTaskTemplate.msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/MSMTaskTemplate.msm -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/NAnt.Contrib.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/NAnt.Contrib.Tasks.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/NAnt.Contrib.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/NAnt.Contrib.Tasks.xml -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/SLiNgshoT.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/SLiNgshoT.Core.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/SLiNgshoT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/SLiNgshoT.exe -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/bin/SourceSafe.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/bin/SourceSafe.Interop.dll -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/images/arrow.gif -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/images/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/images/bullet.gif -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/images/logo.gif -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/index.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/style.css -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/astyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/astyle.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/cclock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/cclock.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/cd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/cd.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/choose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/choose.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/concat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/concat.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/disco.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/disco.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/fxcop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/fxcop.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/gac.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/gac.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/grep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/grep.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/hxcomp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/hxcomp.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/hxreg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/hxreg.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/index.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/mksget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/mksget.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/msi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/msi.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/msm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/msm.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/ngen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/ngen.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4add.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4edit.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4info.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4set.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/p4sync.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/record.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/regasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/regasm.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/scp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/scp.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/sql.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/stlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/stlist.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/svn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/svn.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/vb6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/vb6.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/vssadd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/vssadd.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/vssget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/vssget.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/wsdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/wsdl.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/xsd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/tasks/xsd.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/help/types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/help/types/index.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/license.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/doc/releasenotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/doc/releasenotes.html -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/examples/examples.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/examples/examples.build -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/license.txt -------------------------------------------------------------------------------- /dotnet-tracer/build/nantcontrib-0.85/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nantcontrib-0.85/readme.txt -------------------------------------------------------------------------------- /dotnet-tracer/build/nuget_package.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/nuget_package.build -------------------------------------------------------------------------------- /dotnet-tracer/build/opencover.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/opencover.build -------------------------------------------------------------------------------- /dotnet-tracer/build/ps/update_metrics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/ps/update_metrics.ps1 -------------------------------------------------------------------------------- /dotnet-tracer/build/version.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/build/version.build -------------------------------------------------------------------------------- /dotnet-tracer/default.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/default.build -------------------------------------------------------------------------------- /dotnet-tracer/fakes/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/.nuget/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/fakes/Target/MyInstanceClassCaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/Target/MyInstanceClassCaller.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/Target/MyStaticClassCaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/Target/MyStaticClassCaller.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/Target/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/Target/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/Target/Target.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/Target/Target.csproj -------------------------------------------------------------------------------- /dotnet-tracer/fakes/Target/TimeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/Target/TimeWrapper.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetFakes/MyInstanceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetFakes/MyInstanceClass.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetFakes/MyStaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetFakes/MyStaticClass.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetFakes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetFakes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetFakes/TargetFakes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetFakes/TargetFakes.csproj -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/Fakes/System.fakes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/Fakes/System.fakes -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/Fakes/TargetFakes.fakes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/Fakes/TargetFakes.fakes -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/Fakes/mscorlib.fakes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/Fakes/mscorlib.fakes -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/ShimedClassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/ShimedClassTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/TargetTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/TargetTests.csproj -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/TimeWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/TimeWrapperTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/fakes/TargetTests/vstest.opencover.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/TargetTests/vstest.opencover.cmd -------------------------------------------------------------------------------- /dotnet-tracer/fakes/fakes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/fakes/fakes.sln -------------------------------------------------------------------------------- /dotnet-tracer/main/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/.nuget/NuGet.Config -------------------------------------------------------------------------------- /dotnet-tracer/main/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/.nuget/NuGet.exe -------------------------------------------------------------------------------- /dotnet-tracer/main/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/.nuget/NuGet.targets -------------------------------------------------------------------------------- /dotnet-tracer/main/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/.nuget/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Bundle/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Bundle/AppIcon.ico -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Bundle/Bundle.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Bundle/Bundle.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Bundle/CodePulse.Bundle.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Bundle/CodePulse.Bundle.wixproj -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Bundle/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Bundle/License.rtf -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/BufferPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/BufferPoolTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/ConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/ConfigurationTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/Connection.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/ControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/ControllerTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/Server.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/StateManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/StateManagerTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client.Test/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Agent/DefaultTraceAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Agent/DefaultTraceAgent.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Agent/ITraceAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Agent/ITraceAgent.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/CodePulse.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/CodePulse.Client.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Connect/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Connect/IConnection.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Connect/SocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Connect/SocketConnection.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Control/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Control/Controller.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Control/StateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Control/StateManager.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Data/TraceDataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Data/TraceDataCollector.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Errors/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Errors/ErrorHandler.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Errors/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Errors/IErrorHandler.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Init/HandshakeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Init/HandshakeException.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Message/BufferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Message/BufferService.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Message/IMessageProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Message/IMessageProtocol.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Message/MessageProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Message/MessageProtocol.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Message/MessageTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Message/MessageTypes.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Protocol/ProtocolVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Protocol/ProtocolVersion.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Queue/BufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Queue/BufferPool.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Queue/NamedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Queue/NamedMemoryStream.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Trace/ITraceMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Trace/ITraceMessage.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/Util/SocketFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/Util/SocketFactory.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Client/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Client/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console.Test/OutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console.Test/OutputTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console.Test/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/App.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/CodePulse.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/CodePulse.Console.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/CodePulse.DotNet.Console.ini: -------------------------------------------------------------------------------- 1 | [.NET Framework Debugging Control] 2 | GenerateTrackingInfo=1 3 | AllowOptimize=0 -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/CommandLineParser.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/Program.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/ServiceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/ServiceControl.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/ServiceProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/ServiceProxy.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/log4net.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Console/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Framework.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Framework.Test/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Framework.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Framework.Test/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Framework/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Framework/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Framework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Framework/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer.x64/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer.x64/AppIcon.ico -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer.x64/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer.x64/License.rtf -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer.x64/Licenses.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer.x64/Licenses.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer.x64/Licenses/moq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer.x64/Licenses/moq/LICENSE -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer.x64/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer.x64/Product.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/AppIcon.ico -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/License.rtf -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Licenses.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Licenses.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Licenses/Autofac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Licenses/Autofac/LICENSE -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Licenses/Castle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Licenses/Castle/LICENSE -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Licenses/log4net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Licenses/log4net/LICENSE -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Licenses/log4net/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Licenses/log4net/NOTICE -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Licenses/moq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Licenses/moq/LICENSE -------------------------------------------------------------------------------- /dotnet-tracer/main/CodePulse.Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/CodePulse.Installer/Product.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/1024.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/128.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/16.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/24.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/256.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/32.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/48.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/512.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/64.png -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/Icon.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/Icon.design -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/Icon.ico -------------------------------------------------------------------------------- /dotnet-tracer/main/Icons/OpenCover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/Icons/OpenCover.svg -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.3rdParty.Signer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.3rdParty.Signer/App.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.3rdParty.Signer/GendarmeSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.3rdParty.Signer/GendarmeSigner.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.3rdParty.Signer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.3rdParty.Signer/Program.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.3rdParty.Signer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.3rdParty.Signer/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Console/OpenCover.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Console/OpenCover.Console.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Console/OpenCover.Console.ini: -------------------------------------------------------------------------------- 1 | [.NET Framework Debugging Control] 2 | GenerateTrackingInfo=1 3 | AllowOptimize=0 -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Console/Program.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Console/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Console/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Console/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Documentation/Usage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Documentation/Usage.pdf -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Documentation/Usage.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Documentation/Usage.rtf -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Extensions/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Extensions/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Extensions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Extensions/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Bootstrapper.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/CommandLineParser.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/CommandLineParserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/CommandLineParserBase.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Filter.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Filtering/FilterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Filtering/FilterType.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Filtering/RegexFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Filtering/RegexFilter.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/HelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/HelperExtensions.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/ICommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/ICommandLine.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/IFilter.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Manager/MemoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Manager/MemoryManager.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/BranchPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/BranchPoint.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/Class.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/ContextVisit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/ContextVisit.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/CoverageSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/CoverageSession.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/File.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/Method.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/Module.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/SequencePoint.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/SkippedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/SkippedEntity.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/SkippedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/SkippedMethod.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/Summary.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Model/TrackedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Model/TrackedMethod.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/ProfilerRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/ProfilerRegistration.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Symbols/SymbolFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Symbols/SymbolFile.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Utility/IPerfCounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Utility/IPerfCounters.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Utility/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Utility/LogHelper.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Utility/PerfCounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Utility/PerfCounters.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/Utility/ThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/Utility/ThreadHelper.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/log4net.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Framework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Framework/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Installer/Assets/sample.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Installer/Assets/sample.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Installer/Assets/sample64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Installer/Assets/sample64.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Installer/Components.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Installer/Components.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Installer/Product.wxs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Installer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Installer/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Integration.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Integration.Test/App.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Integration.Test/BranchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Integration.Test/BranchTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Integration.Test/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Integration.Test/ExceptionTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Integration.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Integration.Test/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.MSBuild/OpenCover.MSBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.MSBuild/OpenCover.MSBuild.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.MSBuild/OpenCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.MSBuild/OpenCover.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.MSBuild/OpenCover.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.MSBuild/OpenCover.targets -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.MSBuild/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.MSBuild/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/AssemblyRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/AssemblyRegistry.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/AssemblyRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/AssemblyRegistry.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage.rgs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage64.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage64.rgs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Callback.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Cuckoo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Cuckoo.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Support.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Thread.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CodeCoverage_Trace.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/CoverageInstrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/CoverageInstrumentation.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ExceptionHandler.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ExceptionHandler.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/HttpApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/HttpApplication.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/HttpApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/HttpApplication.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/InjectedType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/InjectedType.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/InjectedType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/InjectedType.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Instruction.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Instruction.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Messages.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Method.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Method.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/MethodBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/MethodBuffer.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/NativeCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/NativeCallback.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/NativeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/NativeCallback.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.def -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.rc -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/OpenCover.Profiler.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/OpenCoverProfiler.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/OpenCoverProfiler.idl -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Operations.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Operations.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ProfileBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ProfileBase.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ProfilerCommunication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ProfilerCommunication.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ProfilerCommunication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ProfilerCommunication.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ProfilerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ProfilerInfo.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ProfilerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ProfilerInfo.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ProfilerInfoBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ProfilerInfoBase.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/PublicKeyTokenCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/PublicKeyTokenCreator.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/PublicKeyTokenCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/PublicKeyTokenCreator.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ReadMe.txt -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ReleaseTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ReleaseTrace.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Resource.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/ScopedLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/ScopedLock.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/SharedMemory.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/SharedMemory.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Synchronization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Synchronization.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Timer.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/Timer.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/TraceContainerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/TraceContainerBase.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/TraceContainerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/TraceContainerBase.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/dllmain.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/dllmain.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/sonar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/sonar.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/stdafx.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/stdafx.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/targetver.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/xdlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/xdlldata.c -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Profiler/xdlldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Profiler/xdlldata.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Simple.Target.Core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Simple.Target.Core/Program.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Simple.Target/Other.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Simple.Target/Other.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Simple.Target/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Simple.Target/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/App.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/DotNetCore.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/DotNetCore.feature -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/DotNetCore.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/DotNetCore.feature.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/OpenCover.Specs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/OpenCover.Specs.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/Packaging.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/Packaging.feature -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/Packaging.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/Packaging.feature.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/Steps/DotNetCoreSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/Steps/DotNetCoreSteps.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/Steps/PackagingSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/Steps/PackagingSteps.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/Steps/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/Steps/Utils.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Specs/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Specs/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Support/DomainHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Support/DomainHelper.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Support/Fakes/FakesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Support/Fakes/FakesHelper.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Support/IDomainHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Support/IDomainHelper.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Support/OpenCover.Support.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Support/OpenCover.Support.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Support/OpenCover.Support.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Support/OpenCover.Support.snk -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Support/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Support/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/ComBaseTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/ComBaseTest.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/InjectedTypeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/InjectedTypeTest.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/MockIMethodMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/MockIMethodMalloc.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/MockProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/MockProfiler.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/MockProfilerHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/MockProfilerHook.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/MockProfilerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/MockProfilerInfo.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/ProfilerBaseTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/ProfilerBaseTest.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/ProfilerInfoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/ProfilerInfoTest.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/ReadMe.txt -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/RegressionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/RegressionTest.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/TestProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/TestProfiler.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/TestProfilerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/TestProfilerInfo.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/TimerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/TimerTest.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/app.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/stdafx.cpp -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/stdafx.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Profiler/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Profiler/targetver.h -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Service/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Service/ProjectInstaller.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Service/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Service/ProjectInstaller.resx -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Service/ScriptOutline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Service/ScriptOutline.ps1 -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Service/Service.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Service/Service.Designer.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Service/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Service/Service.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test.Service/Service.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test.Service/Service.resx -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/App.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Console/OutputTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Console/OutputTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Filtering/FilterTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Filtering/FilterTypeTest.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Framework/FilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Framework/FilterTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Framework/Model/MethodTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Framework/Model/MethodTest.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Integration/ThreadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Integration/ThreadingTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/OpenCover.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/OpenCover.Test.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/ComplexNUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/ComplexNUnit.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Library1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Library1.dll -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Library1.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Library1.fs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Library1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Library1.pdb -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Library2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Library2.dll -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Library2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Library2.fs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Library2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Library2.pdb -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/ReadMe.txt -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/Samples.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/SimpleMsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/SimpleMsTest.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/SimpleNUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/SimpleNUnit.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Samples/SimpleXUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Samples/SimpleXUnit.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/Support/FakesHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/Support/FakesHelperTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.Test/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.UITest/LaunchSimpleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.UITest/LaunchSimpleTest.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.UITest/OpenCover.UITest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.UITest/OpenCover.UITest.csproj -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.UITest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.UITest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/main/OpenCover.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/OpenCover.sln -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/DogFood.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/DogFood.proj -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/OpenCover.Test.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/OpenCover.Test.nunit -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/chow-down.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/chow-down.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood64.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_coverbytest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_coverbytest.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_exattr.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_exattr.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_exfile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_exfile.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_filter.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_filter.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_msbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_msbuild.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_nunit.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_nunit.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_oldschool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_oldschool.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_path32.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_path32.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_regex.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_regex.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_shadow.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_shadow.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/dogfood_threshold.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/dogfood_threshold.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/mstest.opencover.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/mstest.opencover.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/opencover_merge.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/opencover_merge.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/opencovertests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/opencovertests.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/opencovertests64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/opencovertests64.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/partcover.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/partcover.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/pedigree.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/pedigree.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/pedigree_threshold.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/pedigree_threshold.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/report_coverage.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/report_coverage.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/silverlight.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/silverlight.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/uitest.opencover.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/uitest.opencover.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/vstest.opencover.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/vstest.opencover.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/cmdline/xunit.opencover.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/cmdline/xunit.opencover.cmd -------------------------------------------------------------------------------- /dotnet-tracer/main/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/packages/repositories.config -------------------------------------------------------------------------------- /dotnet-tracer/main/transform/simple_report.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/transform/simple_report.xslt -------------------------------------------------------------------------------- /dotnet-tracer/main/transform/transform.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/main/transform/transform.ps1 -------------------------------------------------------------------------------- /dotnet-tracer/samples/OpenCover.Samples.CS/TryFinallyTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/OpenCover.Samples.CS/TryFinallyTarget.cs -------------------------------------------------------------------------------- /dotnet-tracer/samples/OpenCover.Samples.Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/OpenCover.Samples.Service/Program.cs -------------------------------------------------------------------------------- /dotnet-tracer/samples/OpenCover.Samples.Service/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/OpenCover.Samples.Service/Service1.cs -------------------------------------------------------------------------------- /dotnet-tracer/samples/OpenCover.Samples.VB/TryFilterTarget.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/OpenCover.Samples.VB/TryFilterTarget.vb -------------------------------------------------------------------------------- /dotnet-tracer/samples/OpenCover.Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/OpenCover.Samples.sln -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/.nuget/packages.config.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/.nuget/packages.config.tmp -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/Bom/Bom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/Bom/Bom.csproj -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/Bom/BomManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/Bom/BomManager.cs -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/Bom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/Bom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/BomSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/BomSample.sln -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/BomTest/BomManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/BomTest/BomManagerTests.cs -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/BomTest/BomTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/BomTest/BomTest.csproj -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/BomTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/BomTest/packages.config -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/coverage.bat.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/coverage.bat.tmp -------------------------------------------------------------------------------- /dotnet-tracer/samples/SampleSln/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/SampleSln/packages/repositories.config -------------------------------------------------------------------------------- /dotnet-tracer/samples/WCFServiceTest/CoverageTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/WCFServiceTest/CoverageTests.sln -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.CS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.CS.dll -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.CS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.CS.pdb -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.Framework.dll -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.Framework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.Framework.pdb -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.IL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.IL.dll -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.IL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.IL.pdb -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.VB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.VB.dll -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.VB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.VB.pdb -------------------------------------------------------------------------------- /dotnet-tracer/samples/bin/OpenCover.Samples.VB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samples/bin/OpenCover.Samples.VB.xml -------------------------------------------------------------------------------- /dotnet-tracer/samplexml/opencovertests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/samplexml/opencovertests.xml -------------------------------------------------------------------------------- /dotnet-tracer/tools/7-Zip/7-zip.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/7-Zip/7-zip.chm -------------------------------------------------------------------------------- /dotnet-tracer/tools/7-Zip/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/7-Zip/7za.exe -------------------------------------------------------------------------------- /dotnet-tracer/tools/7-Zip/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/7-Zip/copying.txt -------------------------------------------------------------------------------- /dotnet-tracer/tools/7-Zip/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/7-Zip/license.txt -------------------------------------------------------------------------------- /dotnet-tracer/tools/7-Zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/7-Zip/readme.txt -------------------------------------------------------------------------------- /dotnet-tracer/tools/CorrectFileCaseOnCppCoverage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/CorrectFileCaseOnCppCoverage.ps1 -------------------------------------------------------------------------------- /dotnet-tracer/tools/CrashReporterSigned/CrashReporter.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/CrashReporterSigned/CrashReporter.NET.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/CxxSonarQubeMsbuidRunner.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/CxxSonarQubeMsbuidRunner.zip -------------------------------------------------------------------------------- /dotnet-tracer/tools/Moq.contrib/UnityAutoMockContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/Moq.contrib/UnityAutoMockContainer.cs -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/CppCoverage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/CppCoverage.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/Exporter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/Exporter.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/FileFilter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/FileFilter.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/OpenCppCoverage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/OpenCppCoverage.exe -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/Template/MainTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/Template/MainTemplate.html -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/Tools.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/boost_log-vc140-mt-1_59.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/boost_log-vc140-mt-1_59.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/dbgcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/dbgcore.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/dbghelp.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/libctemplate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/libctemplate.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverage/template_test_util_test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverage/template_test_util_test.dll -------------------------------------------------------------------------------- /dotnet-tracer/tools/OpenCppCoverageToGenCoverage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/OpenCppCoverageToGenCoverage.xsl -------------------------------------------------------------------------------- /dotnet-tracer/tools/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/README.txt -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/Release/RunSxS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/Release/RunSxS.exe -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/Release/RunSxS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/Release/RunSxS.pdb -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/RunSxS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/RunSxS.cpp -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/RunSxS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/RunSxS.sln -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/RunSxS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/RunSxS.txt -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/RunSxS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/RunSxS.vcxproj -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/x64/Release/RunSxS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/x64/Release/RunSxS.exe -------------------------------------------------------------------------------- /dotnet-tracer/tools/RunSxS/x64/Release/RunSxS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/RunSxS/x64/Release/RunSxS.pdb -------------------------------------------------------------------------------- /dotnet-tracer/tools/atlsvr.9.0.70425.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/atlsvr.9.0.70425.zip -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gmock-1.7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gmock-1.7.0.zip -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/include/gmock/gmock.h -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock-all.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock-matchers.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/gmock-1.7.0/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/gmock-1.7.0/src/gmock_main.cc -------------------------------------------------------------------------------- /dotnet-tracer/tools/sonar-scanner-msbuild-4.0.0.821.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/dotnet-tracer/tools/sonar-scanner-msbuild-4.0.0.821.zip -------------------------------------------------------------------------------- /hq/src/main/scala/com/secdec/bytefrog/hq/errors/Error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/hq/src/main/scala/com/secdec/bytefrog/hq/errors/Error.scala -------------------------------------------------------------------------------- /hq/src/main/scala/com/secdec/bytefrog/hq/protocol/IO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/hq/src/main/scala/com/secdec/bytefrog/hq/protocol/IO.scala -------------------------------------------------------------------------------- /hq/src/main/scala/com/secdec/bytefrog/hq/trace/Trace.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/hq/src/main/scala/com/secdec/bytefrog/hq/trace/Trace.scala -------------------------------------------------------------------------------- /hq/src/main/scala/com/secdec/bytefrog/hq/util/DoOnce.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/hq/src/main/scala/com/secdec/bytefrog/hq/util/DoOnce.scala -------------------------------------------------------------------------------- /hq/src/main/scala/com/secdec/bytefrog/hq/util/Shutdown.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/hq/src/main/scala/com/secdec/bytefrog/hq/util/Shutdown.scala -------------------------------------------------------------------------------- /hq/src/main/scala/com/secdec/bytefrog/hq/util/WeakMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/hq/src/main/scala/com/secdec/bytefrog/hq/util/WeakMap.scala -------------------------------------------------------------------------------- /installers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/.gitignore -------------------------------------------------------------------------------- /installers/DotNet-Tracer/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/DotNet-Tracer/build.ps1 -------------------------------------------------------------------------------- /installers/DotNet-Tracer/download-files/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/DotNet-Tracer/download-files/img/icon.png -------------------------------------------------------------------------------- /installers/Licenses/codepulse/ASM/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/ASM/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/DependencyCheck/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/DependencyCheck/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/DependencyCheck/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/DependencyCheck/NOTICE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/akka-actor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/akka-actor/LICENSE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/astam-correlator/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/astam-correlator/license.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/commons-compress/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/commons-compress/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/commons-compress/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/commons-compress/NOTICE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/commons-io/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/commons-io/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/commons-io/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/commons-io/NOTICE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/commons-lang3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/commons-lang3/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/commons-lang3/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/commons-lang3/NOTICE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/dispatch-core/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/dispatch-core/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/groovy-all/ANTLR-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/groovy-all/ANTLR-LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/groovy-all/ASM-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/groovy-all/ASM-LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/groovy-all/CLI-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/groovy-all/CLI-LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/groovy-all/JSR223-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/groovy-all/JSR223-LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/groovy-all/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/groovy-all/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/groovy-all/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/groovy-all/NOTICE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/h2/License-EPL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/h2/License-EPL-1.0.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/h2/License-MPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/h2/License-MPL.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jackson-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jackson-core/LICENSE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jackson-core/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jackson-core/NOTICE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jackson-module-scala/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jackson-module-scala/LICENSE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/java-parser/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/java-parser/license.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/javax.servlet-api/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/javax.servlet-api/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jcl-over-slf4j/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jcl-over-slf4j/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jetty-orbit/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jetty-orbit/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jetty-webapp/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jetty-webapp/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jna/LGPL2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jna/LGPL2.1 -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jna/LICENSE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jna/LICENSE.ASL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jna/LICENSE.ASL -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jna/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jna/LICENSE.LGPL -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jsonb/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jsonb/LICENCE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/jsonp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/jsonp/LICENSE.md -------------------------------------------------------------------------------- /installers/Licenses/codepulse/juniversalchardet/MPL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/juniversalchardet/MPL-1.1.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/lift-webkit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/lift-webkit/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/logback-classic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/logback-classic/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/minlog/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/minlog/license.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/open-jdk/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/open-jdk/license.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/openj9/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/openj9/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/paranamer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/paranamer/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/reactive-core/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/reactive-core/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/sbt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/sbt/LICENSE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/sbt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/sbt/NOTICE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/scala/License-BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/scala/License-BSD-3-Clause.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/scala/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/scala/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/scalactic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/scalactic/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/scalamock/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/scalamock/LICENCE -------------------------------------------------------------------------------- /installers/Licenses/codepulse/scalatest/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/scalatest/License.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/slick/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/slick/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/codepulse/yasson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/codepulse/yasson/LICENSE -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/groovy-all/ASM-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/groovy-all/ASM-LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/groovy-all/CLI-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/groovy-all/CLI-LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/groovy-all/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/groovy-all/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/groovy-all/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/groovy-all/NOTICE.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/jcl-over-slf4j/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/jcl-over-slf4j/License.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/jsonb/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/jsonb/LICENCE.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/jsonp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/jsonp/LICENSE.md -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/logback-classic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/logback-classic/License.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/open-jdk/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/open-jdk/license.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/openj9/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/openj9/LICENSE.txt -------------------------------------------------------------------------------- /installers/Licenses/tracers/java/yasson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Licenses/tracers/java/yasson/LICENSE -------------------------------------------------------------------------------- /installers/Linux/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Linux/build.ps1 -------------------------------------------------------------------------------- /installers/Scripts/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Scripts/common.ps1 -------------------------------------------------------------------------------- /installers/Scripts/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Scripts/init.ps1 -------------------------------------------------------------------------------- /installers/Scripts/sbt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Scripts/sbt.ps1 -------------------------------------------------------------------------------- /installers/Scripts/text.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Scripts/text.ps1 -------------------------------------------------------------------------------- /installers/Tools/ZipFile/bin/ZipFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/bin/ZipFile.exe -------------------------------------------------------------------------------- /installers/Tools/ZipFile/bin/ZipFile.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/bin/ZipFile.exe.config -------------------------------------------------------------------------------- /installers/Tools/ZipFile/bin/ZipFile.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/bin/ZipFile.pdb -------------------------------------------------------------------------------- /installers/Tools/ZipFile/src/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/src/App.config -------------------------------------------------------------------------------- /installers/Tools/ZipFile/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/src/Program.cs -------------------------------------------------------------------------------- /installers/Tools/ZipFile/src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /installers/Tools/ZipFile/src/ZipFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Tools/ZipFile/src/ZipFile.csproj -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer.Win64/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer.Win64/AppIcon.ico -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer.Win64/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer.Win64/License.rtf -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer.Win64/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer.Win64/Product.wxs -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer/dllmain.cpp -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer/stdafx.cpp -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer/stdafx.h -------------------------------------------------------------------------------- /installers/Windows/CodePulse.Installer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/CodePulse.Installer/targetver.h -------------------------------------------------------------------------------- /installers/Windows/Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/Windows.sln -------------------------------------------------------------------------------- /installers/Windows/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/build.ps1 -------------------------------------------------------------------------------- /installers/Windows/heat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/Windows/heat.ps1 -------------------------------------------------------------------------------- /installers/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/build.ps1 -------------------------------------------------------------------------------- /installers/macOS/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/installers/macOS/build.ps1 -------------------------------------------------------------------------------- /project/BuildKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/BuildKeys.scala -------------------------------------------------------------------------------- /project/Dependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/Dependencies.scala -------------------------------------------------------------------------------- /project/DependencyFetcher.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/DependencyFetcher.scala -------------------------------------------------------------------------------- /project/Distributor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/Distributor.scala -------------------------------------------------------------------------------- /project/FetchCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/FetchCache.scala -------------------------------------------------------------------------------- /project/VersionSystem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/VersionSystem.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.18 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /project/project/Build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/project/Build.scala -------------------------------------------------------------------------------- /project/sbt-betterzip/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/sbt-betterzip/readme.md -------------------------------------------------------------------------------- /project/sbt-betterzip/sbt-betterzip.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/project/sbt-betterzip/sbt-betterzip.sbt -------------------------------------------------------------------------------- /publish-symbol-service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/publish-symbol-service.ps1 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/readme.md -------------------------------------------------------------------------------- /tools/Anolis.Resourcer-0.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/tools/Anolis.Resourcer-0.9.zip -------------------------------------------------------------------------------- /tools/reporting/ExportFileReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedx/codepulse/HEAD/tools/reporting/ExportFileReport.ps1 --------------------------------------------------------------------------------