├── .gitignore ├── CLRProfiler ├── CLRProfiler.doc ├── CLRProfiler.sln ├── CLRProfiler │ ├── AgeHistogram.cs │ ├── AgeHistogram.resx │ ├── AllocationDiff.cs │ ├── AssemblyInfo.cs │ ├── AttachTargetPIDForm.cs │ ├── BitReader.cs │ ├── BitWriter.cs │ ├── CLRProfiler.csproj │ ├── CLRProfiler.sln │ ├── CallTreeForm.cs │ ├── CallTreeForm.resx │ ├── CommentRangeForm.cs │ ├── CommentRangeForm.resx │ ├── DevLicenseWarning.Designer.cs │ ├── DevLicenseWarning.cs │ ├── DevLicenseWarning.resx │ ├── DiffCallTreeForm.cs │ ├── DiffCallTreeForm.resx │ ├── DiffDataNode.cs │ ├── DiffTreeListView.cs │ ├── DiffTreeListView.resx │ ├── Edge.cs │ ├── FilterForm.cs │ ├── FilterForm.resx │ ├── FindRoutineForm.cs │ ├── FindRoutineForm.resx │ ├── FunctionFilter.cs │ ├── FunctionFilter.resx │ ├── FunctionFind.cs │ ├── FunctionFind.resx │ ├── Graph.cs │ ├── GraphBase.cs │ ├── GraphViewForm.cs │ ├── GraphViewForm.resx │ ├── HelpForm.Designer.cs │ ├── HelpForm.cs │ ├── HistogramViewForm.cs │ ├── HistogramViewForm.resx │ ├── KillProcessForm.cs │ ├── KillProcessForm.resx │ ├── ListViewer.cs │ ├── ListViewer.resx │ ├── LogBase.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Migrated rules for CLRProfiler.ruleset │ ├── NamedManualResetEvent.cs │ ├── Native.rc │ ├── ObjectGraph.cs │ ├── OpenURLForm.cs │ ├── PlacedToolTip.cs │ ├── PlacedToolTip.resx │ ├── ProfileServiceForm.cs │ ├── ProfileServiceForm.resx │ ├── ProgressForm.cs │ ├── ProgressForm.resx │ ├── ReadNewLog.cs │ ├── Readers.cs │ ├── Readme.txt │ ├── RegisterDLL.cs │ ├── ReportForm.cs │ ├── ReportForm.resx │ ├── Reports.cs │ ├── SaveFileForm.cs │ ├── SaveFileForm.resx │ ├── SelectColumns.cs │ ├── SelectColumns.resx │ ├── SetParameterForm.cs │ ├── SetParameterForm.resx │ ├── SortAndHighlightSelector.cs │ ├── SortAndHighlightSelector.resx │ ├── SummaryForm.cs │ ├── SummaryForm.resx │ ├── TimeLineViewForm.cs │ ├── TimeLineViewForm.resx │ ├── TreeListView.cs │ ├── TreeListView.resx │ ├── TreeNodeBase.resx │ ├── Version.pp │ ├── Vertex.cs │ ├── ViewByAddressForm.cs │ ├── ViewByAddressForm.resx │ ├── ViewCommentsForm.cs │ ├── ViewCommentsForm.resx │ ├── ViewFilter.cs │ ├── ViewFilter.resx │ ├── WaitingForConnectionForm.cs │ ├── WaitingForConnectionForm.resx │ ├── WindowsStoreAppChooserForm.Designer.cs │ ├── WindowsStoreAppChooserForm.cs │ ├── WindowsStoreAppChooserForm.resx │ ├── WindowsStoreAppHelperWrapper.cs │ └── app.config ├── CLRProfilerControl │ ├── AssemblyInfo.cs │ ├── CLRProfilerControl.cs │ ├── CLRProfilerControl.csproj │ ├── Demos │ │ ├── Demo1 │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Demo1.cs │ │ │ ├── Demo1.csproj │ │ │ └── app.config │ │ ├── Demo2 │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Demo2.cs │ │ │ ├── Demo2.csproj │ │ │ └── app.config │ │ ├── Demo3 │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Demo3.cs │ │ │ ├── Demo3.csproj │ │ │ └── app.config │ │ ├── Demo4 │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Demo4.cs │ │ │ ├── Demo4.csproj │ │ │ └── app.config │ │ ├── Demos.sln │ │ └── Readme.txt │ ├── Migrated rules for CLRProfilerControl.ruleset │ └── Readme.txt ├── MidlOut │ ├── AppxPackaging.idl │ ├── AppxPackagingTlb.dll │ ├── ShObjIdlModified.idl │ ├── ShObjIdlModifiedTlb.dll │ └── readme.txt ├── Readme.txt ├── WindowsStoreAppHelper │ ├── CLRProfilerWindowsStoreAppHelper.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Settings.cs │ └── WindowsStoreAppHelper.cs ├── WindowsStoreAppThreadResumer │ ├── WindowsStoreAppThreadResumer.cpp │ ├── WindowsStoreAppThreadResumer.vcxproj │ ├── WindowsStoreAppThreadResumer.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── profilerOBJ │ ├── LeaveNaked.asm │ ├── Native.rc │ ├── ProfilerCallback.cpp │ ├── ProfilerCallback.h │ ├── ProfilerInfo.cpp │ ├── ProfilerInfo.h │ ├── ProfilerOBJ.cpp │ ├── ProfilerOBJ.def │ ├── ProfilerOBJ.vcproj │ ├── ProfilerOBJ.vcxproj │ ├── ProfilerOBJ.vcxproj.filters │ ├── Readme.txt │ ├── amd64 │ └── asmhelpers.asm │ ├── attachhelper.cpp │ ├── avlnode.h │ ├── avlnode.hpp │ ├── basehdr.h │ ├── basehlp.h │ ├── basehlp.hpp │ ├── classfactory.hpp │ ├── container.h │ ├── container.hpp │ ├── dllmain.hpp │ ├── regutil.h │ └── regutil.hpp ├── ILRewrite ├── ILRewriteGUI │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── ILRewriteGUI.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── ILRewriteProfiler.sln ├── ILRewriteProfiler │ ├── ILRewriteProfiler.def │ ├── ILRewriteProfiler.vcxproj │ ├── ILRewriteProfiler.vcxproj.filters │ ├── ProfilerCallback.cpp │ ├── ProfilerCallback.h │ ├── Rejitter.cpp │ ├── basehdr.h │ ├── classfactory.hpp │ ├── dllmain.hpp │ ├── ilrewriter.cpp │ ├── profilerhelperkey.snk │ ├── regutil.h │ ├── regutil.hpp │ ├── sigparse.inl │ ├── stdafx.cpp │ └── stdafx.h ├── ProfilerHelper │ ├── ProfilerHelper.cs │ ├── ProfilerHelper.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SigningFile.snk ├── README.txt └── SampleApp │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── SampleApp.csproj ├── LICENSE ├── README.md └── Wiki ├── CLRProfiler.md ├── Documentation.md ├── Home.md ├── ILRewriter.md └── Writing My Own Profiler.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/.gitignore -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler.doc -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler.sln -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/AgeHistogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/AgeHistogram.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/AgeHistogram.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/AgeHistogram.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/AllocationDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/AllocationDiff.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/AttachTargetPIDForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/AttachTargetPIDForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/BitReader.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/BitWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/BitWriter.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/CLRProfiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/CLRProfiler.csproj -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/CLRProfiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/CLRProfiler.sln -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/CallTreeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/CallTreeForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/CallTreeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/CallTreeForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/CommentRangeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/CommentRangeForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/CommentRangeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/CommentRangeForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DevLicenseWarning.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DevLicenseWarning.Designer.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DevLicenseWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DevLicenseWarning.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DevLicenseWarning.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DevLicenseWarning.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DiffCallTreeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DiffCallTreeForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DiffCallTreeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DiffCallTreeForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DiffDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DiffDataNode.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DiffTreeListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DiffTreeListView.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/DiffTreeListView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/DiffTreeListView.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Edge.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FilterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FilterForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FilterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FilterForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FindRoutineForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FindRoutineForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FindRoutineForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FindRoutineForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FunctionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FunctionFilter.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FunctionFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FunctionFilter.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FunctionFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FunctionFind.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/FunctionFind.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/FunctionFind.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Graph.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/GraphBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/GraphBase.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/GraphViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/GraphViewForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/GraphViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/GraphViewForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/HelpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/HelpForm.Designer.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/HelpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/HelpForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/HistogramViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/HistogramViewForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/HistogramViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/HistogramViewForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/KillProcessForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/KillProcessForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/KillProcessForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/KillProcessForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ListViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ListViewer.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ListViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ListViewer.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/LogBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/LogBase.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/MainForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/MainForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Migrated rules for CLRProfiler.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Migrated rules for CLRProfiler.ruleset -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/NamedManualResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/NamedManualResetEvent.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Native.rc -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ObjectGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ObjectGraph.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/OpenURLForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/OpenURLForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/PlacedToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/PlacedToolTip.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/PlacedToolTip.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/PlacedToolTip.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ProfileServiceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ProfileServiceForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ProfileServiceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ProfileServiceForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ProgressForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ProgressForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ProgressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ProgressForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ReadNewLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ReadNewLog.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Readers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Readers.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Readme.txt -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/RegisterDLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/RegisterDLL.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ReportForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ReportForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ReportForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ReportForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Reports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Reports.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SaveFileForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SaveFileForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SaveFileForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SaveFileForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SelectColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SelectColumns.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SelectColumns.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SelectColumns.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SetParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SetParameterForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SetParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SetParameterForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SortAndHighlightSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SortAndHighlightSelector.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SortAndHighlightSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SortAndHighlightSelector.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SummaryForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SummaryForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/SummaryForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/SummaryForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/TimeLineViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/TimeLineViewForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/TimeLineViewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/TimeLineViewForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/TreeListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/TreeListView.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/TreeListView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/TreeListView.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/TreeNodeBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/TreeNodeBase.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Version.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Version.pp -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/Vertex.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ViewByAddressForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ViewByAddressForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ViewByAddressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ViewByAddressForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ViewCommentsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ViewCommentsForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ViewCommentsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ViewCommentsForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ViewFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ViewFilter.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/ViewFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/ViewFilter.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/WaitingForConnectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/WaitingForConnectionForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/WaitingForConnectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/WaitingForConnectionForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/WindowsStoreAppChooserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/WindowsStoreAppChooserForm.Designer.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/WindowsStoreAppChooserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/WindowsStoreAppChooserForm.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/WindowsStoreAppChooserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/WindowsStoreAppChooserForm.resx -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/WindowsStoreAppHelperWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/WindowsStoreAppHelperWrapper.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfiler/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfiler/app.config -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/CLRProfilerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/CLRProfilerControl.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/CLRProfilerControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/CLRProfilerControl.csproj -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo1/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo1/App.ico -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo1/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo1/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo1/Demo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo1/Demo1.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo1/Demo1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo1/Demo1.csproj -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo1/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo1/app.config -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo2/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo2/App.ico -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo2/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo2/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo2/Demo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo2/Demo2.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo2/Demo2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo2/Demo2.csproj -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo2/app.config -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo3/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo3/App.ico -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo3/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo3/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo3/Demo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo3/Demo3.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo3/Demo3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo3/Demo3.csproj -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo3/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo3/app.config -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo4/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo4/App.ico -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo4/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo4/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo4/Demo4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo4/Demo4.cs -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo4/Demo4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo4/Demo4.csproj -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demo4/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demo4/app.config -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Demos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Demos.sln -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Demos/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Demos/Readme.txt -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Migrated rules for CLRProfilerControl.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Migrated rules for CLRProfilerControl.ruleset -------------------------------------------------------------------------------- /CLRProfiler/CLRProfilerControl/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/CLRProfilerControl/Readme.txt -------------------------------------------------------------------------------- /CLRProfiler/MidlOut/AppxPackaging.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/MidlOut/AppxPackaging.idl -------------------------------------------------------------------------------- /CLRProfiler/MidlOut/AppxPackagingTlb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/MidlOut/AppxPackagingTlb.dll -------------------------------------------------------------------------------- /CLRProfiler/MidlOut/ShObjIdlModified.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/MidlOut/ShObjIdlModified.idl -------------------------------------------------------------------------------- /CLRProfiler/MidlOut/ShObjIdlModifiedTlb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/MidlOut/ShObjIdlModifiedTlb.dll -------------------------------------------------------------------------------- /CLRProfiler/MidlOut/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/MidlOut/readme.txt -------------------------------------------------------------------------------- /CLRProfiler/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/Readme.txt -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppHelper/CLRProfilerWindowsStoreAppHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppHelper/CLRProfilerWindowsStoreAppHelper.csproj -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppHelper/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppHelper/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppHelper/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppHelper/Properties/Settings.settings -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppHelper/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppHelper/Settings.cs -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppHelper/WindowsStoreAppHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppHelper/WindowsStoreAppHelper.cs -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppThreadResumer/WindowsStoreAppThreadResumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppThreadResumer/WindowsStoreAppThreadResumer.cpp -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppThreadResumer/WindowsStoreAppThreadResumer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppThreadResumer/WindowsStoreAppThreadResumer.vcxproj -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppThreadResumer/WindowsStoreAppThreadResumer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppThreadResumer/WindowsStoreAppThreadResumer.vcxproj.filters -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppThreadResumer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppThreadResumer/stdafx.cpp -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppThreadResumer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppThreadResumer/stdafx.h -------------------------------------------------------------------------------- /CLRProfiler/WindowsStoreAppThreadResumer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/WindowsStoreAppThreadResumer/targetver.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/LeaveNaked.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/LeaveNaked.asm -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/Native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/Native.rc -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerCallback.cpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerCallback.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerInfo.cpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerInfo.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerOBJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerOBJ.cpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerOBJ.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerOBJ.def -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerOBJ.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerOBJ.vcproj -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerOBJ.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerOBJ.vcxproj -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/ProfilerOBJ.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/ProfilerOBJ.vcxproj.filters -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/Readme.txt -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/amd64/asmhelpers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/amd64/asmhelpers.asm -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/attachhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/attachhelper.cpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/avlnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/avlnode.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/avlnode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/avlnode.hpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/basehdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/basehdr.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/basehlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/basehlp.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/basehlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/basehlp.hpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/classfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/classfactory.hpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/container.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/container.hpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/dllmain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/dllmain.hpp -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/regutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/regutil.h -------------------------------------------------------------------------------- /CLRProfiler/profilerOBJ/regutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/CLRProfiler/profilerOBJ/regutil.hpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/App.config -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/App.xaml -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/App.xaml.cs -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/ILRewriteGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/ILRewriteGUI.csproj -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/MainWindow.xaml -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ILRewrite/ILRewriteGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler.sln -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/ILRewriteProfiler.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/ILRewriteProfiler.def -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/ILRewriteProfiler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/ILRewriteProfiler.vcxproj -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/ILRewriteProfiler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/ILRewriteProfiler.vcxproj.filters -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/ProfilerCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/ProfilerCallback.cpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/ProfilerCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/ProfilerCallback.h -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/Rejitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/Rejitter.cpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/basehdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/basehdr.h -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/classfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/classfactory.hpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/dllmain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/dllmain.hpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/ilrewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/ilrewriter.cpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/profilerhelperkey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/profilerhelperkey.snk -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/regutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/regutil.h -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/regutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/regutil.hpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/sigparse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/sigparse.inl -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/stdafx.cpp -------------------------------------------------------------------------------- /ILRewrite/ILRewriteProfiler/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ILRewriteProfiler/stdafx.h -------------------------------------------------------------------------------- /ILRewrite/ProfilerHelper/ProfilerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ProfilerHelper/ProfilerHelper.cs -------------------------------------------------------------------------------- /ILRewrite/ProfilerHelper/ProfilerHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ProfilerHelper/ProfilerHelper.csproj -------------------------------------------------------------------------------- /ILRewrite/ProfilerHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ProfilerHelper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILRewrite/ProfilerHelper/SigningFile.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/ProfilerHelper/SigningFile.snk -------------------------------------------------------------------------------- /ILRewrite/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/README.txt -------------------------------------------------------------------------------- /ILRewrite/SampleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/SampleApp/App.config -------------------------------------------------------------------------------- /ILRewrite/SampleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/SampleApp/Program.cs -------------------------------------------------------------------------------- /ILRewrite/SampleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/SampleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILRewrite/SampleApp/SampleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/ILRewrite/SampleApp/SampleApp.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/README.md -------------------------------------------------------------------------------- /Wiki/CLRProfiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/Wiki/CLRProfiler.md -------------------------------------------------------------------------------- /Wiki/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/Wiki/Documentation.md -------------------------------------------------------------------------------- /Wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/Wiki/Home.md -------------------------------------------------------------------------------- /Wiki/ILRewriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/Wiki/ILRewriter.md -------------------------------------------------------------------------------- /Wiki/Writing My Own Profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftarchive/clrprofiler/HEAD/Wiki/Writing My Own Profiler.md --------------------------------------------------------------------------------