├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── AnalysisCore ├── AnalysisCore.csproj ├── AnalysisMessages.cs ├── ApplicationInsights.config ├── Async │ ├── AsyncDummyProjectCodeProvider.cs │ ├── AsyncProjectCodeProvider.cs │ └── AsyncSolutionManager.cs ├── BaseManagers │ ├── BaseProjectCodeProvider.cs │ ├── DummyProjectCodeProvider.cs │ ├── MethodEntityPropagator.cs │ ├── ProjectCodeProviderIncremental.cs │ ├── RtaManager.cs │ └── SolutionManager.cs ├── Graph │ ├── Graph.cs │ ├── GraphAnnotationData.cs │ ├── GraphvizAdapter.cs │ ├── IGraph.cs │ ├── PropagationGraph.cs │ └── PropagationGraphAsync.cs ├── IEntity.cs ├── Logger.cs ├── MethodEntity.cs ├── Properties │ └── AssemblyInfo.cs ├── Roslyn │ ├── CodeGraphHelper.cs │ ├── DocumentDiff.cs │ ├── ExpressionVisitor.cs │ ├── LibraryMethodProcessor.cs │ ├── MethodSimpifier.cs │ ├── RoslynASTVisitor.cs │ ├── RoslynSymbolFactory.cs │ ├── SolutionFileGenerator.cs │ └── Utils.cs ├── StatementProcessor.cs ├── Tests │ └── TestSources.cs ├── app.config └── packages.config ├── AzureScripts ├── AzureScripts.pssproj ├── ChangeNumberOfInstances.ps1 ├── ConnectToAzure.ps1 ├── InstallVS2015.ps1 ├── InvokeCmd.ps1 ├── InvokeGrainDeactivation.ps1 ├── InvokeRandomQueries.ps1 ├── InvokeRemoveStats.ps1 ├── InvokeSolutionExperiment.ps1 ├── InvokeTestExperiments.ps1 ├── RunAllTest.ps1 ├── RunAllTestsForInstance.ps1 ├── RunTestForInstance.ps1 ├── Stop-Start-CloudService.ps1 ├── Subscriptions.txt ├── UpdateCloudConfig.ps1 ├── WaitAnalysisReady.ps1 └── WindowsPowerShell │ └── Modules │ └── Update-CloudServiceScale │ └── Update-CloudServiceScale.psm1 ├── CallGraphGeneration ├── App.config ├── CallGraphGeneration.csproj ├── OrleansHostWrapper.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── orleans.codegen.cs └── packages.config ├── CodeGraphModel ├── Annotation.cs ├── CodeGraph.cs ├── CodeGraphModel.csproj ├── Constants.cs ├── Entity.cs ├── File.cs ├── Properties │ └── AssemblyInfo.cs ├── Symbol.cs └── Vertex.cs ├── Common ├── Common.csproj ├── DevTestClientConfiguration.xml ├── DevTestServerConfiguration.xml ├── Graph │ ├── CallNodes.cs │ ├── GraphAnnotationData.cs │ ├── GraphvizAdapter.cs │ ├── PropagationEffects.cs │ └── PropagationGraph.cs ├── IEntity.cs ├── Interfaces.cs ├── MethodEntity.cs ├── OrleansHostWrapper.cs ├── Properties │ └── AssemblyInfo.cs ├── Roslyn │ ├── CodeProvider.cs │ ├── RoslynSymbolFactory.cs │ └── Utils.cs ├── SerializableTypes │ ├── AnalysisTypes.cs │ ├── CallInfo.cs │ ├── Messages.cs │ └── PropagationEffects.cs ├── Utils.cs ├── app.config └── packages.config ├── ConsoleCobyClient ├── App.config ├── ConsoleCobyClient.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── ConsoleServer ├── App.config ├── ClientConfigurationForTesting.xml ├── ConsoleServer.csproj ├── Controllers │ └── OrleansController.cs ├── OrleansConfigurationForTesting.xml ├── OrleansHostWrapper.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Startup.cs ├── Utils │ ├── Algorithms.cs │ └── TimedLog.cs └── packages.config ├── LICENSE.txt ├── OrleansAzureSilos ├── OrleansAzureSilos.ccproj ├── OrleansSilosInAzureContent │ └── diagnostics.wadcfgx ├── ServiceConfiguration.Cloud.cscfg ├── ServiceConfiguration.Local.cscfg ├── ServiceDefinition.csdef ├── WebAPIContent │ └── diagnostics.wadcfgx └── WebRole1Content │ └── diagnostics.wadcfgx ├── OrleansGrains ├── MethodEntity │ ├── MethodEntityGrain.cs │ ├── MethodEntityGrainCallerWrapper.cs │ └── OrleansMethodEntity.cs ├── OrleansGrains.csproj ├── ProjectCodeProvider │ ├── OrleansDummyProjectCodeProvider.cs │ ├── OrleansProjectCodeProvider.cs │ ├── ProjectCodeProviderGrain.cs │ ├── ProjectCodeProviderGrainCallerWrapper.cs │ └── ProjectCodeProviderWithCache.cs ├── Properties │ └── AssemblyInfo.cs ├── Rta │ ├── OrleansRtaManager.cs │ ├── RtaGrain.cs │ └── RtaGrainCallerWrapper.cs ├── SiloOrchestrator.cs ├── Solution │ ├── OrleansSolutionManager.cs │ ├── SolutionGrain.cs │ ├── SolutionGrainCache.cs │ └── SolutionGrainCallerWrapper.cs ├── StatsGrain.cs ├── app.config └── packages.config ├── OrleansInterfaces ├── IMethodEntityGrain.cs ├── IProjectCodeProviderGrain.cs ├── IRtaGrain.cs ├── ISolutionGrain.cs ├── IStatsGrains.cs ├── Observers.cs ├── OrleansInterfaces.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── OrleansSilosInAzure ├── ApplicationInsights.config ├── OrleansConfiguration.xml ├── OrleansLocalConfiguration.xml ├── OrleansSilosInAzure.csproj ├── Properties │ └── AssemblyInfo.cs ├── WadExample.xml ├── WorkerRole.cs ├── app.config ├── packages.config └── scripts │ ├── External │ ├── AzCopy │ │ ├── AzCopy.exe │ │ ├── Microsoft.Data.Edm.dll │ │ ├── Microsoft.Data.OData.dll │ │ ├── Microsoft.Data.Services.Client.dll │ │ ├── Microsoft.WindowsAzure.Storage.DataMovement.dll │ │ ├── Microsoft.WindowsAzure.Storage.TableDataMovement.dll │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ ├── Newtonsoft.Json.dll │ │ └── System.Spatial.dll │ └── BuildTools_Full.exe │ ├── GCSettingsManagement.ps1 │ ├── InstallNET46.cmd │ ├── InstallVS2015-v2.cmd │ ├── InstallVS2015.cmd │ ├── RunAzureCopy.cmd │ ├── ServerGC.cmd │ ├── SetupExternalTasks.cmd │ └── SetupExternalTasks.ps1 ├── OrleansTests ├── BasicTest.cs ├── ClientConfigurationForTesting.xml ├── OrleansConfigurationForTesting.xml ├── OrleansTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── Tests.cs ├── UnitTest1.cs ├── app.config └── packages.config ├── README.md ├── ReachingTypeAnalysis.sln ├── ReachingTypeAnalysis ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── Analysis │ ├── AnalysisOrchestrator.cs │ ├── CallGraphQueryInterface.cs │ └── SolutionAnalyzer.cs ├── App.config ├── ApplicationInsights.config ├── CallGraph │ ├── CallGraph.cs │ ├── DGMLGraphDataAdapter.cs │ └── GraphVizGraphDataAdapter .cs ├── ClientConfigurationForTesting.xml ├── MethodWorker.cs ├── Orleans │ ├── Driver │ │ └── Program.cs │ └── OrleansHostWrapper.cs ├── OrleansConfigurationForTesting.xml ├── Properties │ └── AssemblyInfo.cs ├── ReachingTypeAnalysis.csproj ├── Statistics │ ├── AnalysisClient.cs │ ├── SolutionStats.cs │ └── TableEntries.cs ├── Tests │ ├── BasicTest.cs │ ├── CallGraphGenerator.cs │ ├── ConcurrencyTest.cs │ ├── Incremental.cs │ ├── IncrementalAsync.cs │ ├── IncrementalDiff.cs │ ├── IncrementalOrleans.cs │ ├── LongTests.cs │ ├── QueryTests.cs │ ├── SolutionTests.cs │ ├── SoundnessEntireAsync.cs │ ├── SoundnessOnDemandAsync.cs │ ├── SoundnessOnDemandOrleans.cs │ └── TestUtils.cs └── packages.config ├── References ├── Microsoft.CodeAnalysis.Tachyon.dll └── Microsoft.CodeAnalysis.Tachyon.pdb ├── StandaloneOrleansAzure ├── App.config ├── ApplicationInsights.config ├── ClientConfiguration.xml ├── OrleansConfiguration.xml ├── OrleansHostWrapper.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── StandaloneOrleansAzure.csproj └── packages.config ├── StatsProject ├── App.config ├── ClientConfigurationForTesting.xml ├── OrleansConfigurationForTesting.xml ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── orleans.codegen.cs ├── StatsProject.csproj └── packages.config ├── StorageProviders ├── BaseJSONStorageProvider.cs ├── FileStorageProvider.cs ├── IJSONStateDataManager.cs ├── Properties │ └── AssemblyInfo.cs ├── Samples.StorageProviders.csproj └── packages.config ├── SyncVersion ├── CallGraph │ ├── CallGraph.cs │ ├── DGMLGraphDataAdapter.cs │ └── GraphVizGraphDataAdapter .cs ├── Communication │ ├── IDispatcher.cs │ ├── IEntity.cs │ ├── IEntityProcessor.cs │ ├── OnDemandSolutionDispacher.cs │ ├── QueueingDispatcher.cs │ ├── Serialization.cs │ └── SynchronousLocalDispatcher.cs ├── Properties │ └── AssemblyInfo.cs ├── Roslyn │ ├── ProjectCodeProvider.cs │ └── ProjectCodeProviderLegacy.cs ├── SolutionAnalyzerSync.cs ├── SyncLegacyVersion.csproj ├── SyncVersion │ ├── MethodEntityProcessor.cs │ └── MethodEntityProcessorAsync.cs ├── Tests │ ├── BasicTest.cs │ ├── LongTests.cs │ ├── SoundnessEntireSync.cs │ ├── SoundnessOnDemandSync.cs │ └── Tests.cs ├── app.config └── packages.config ├── TestPlaylists ├── Generated.playlist ├── OnDemandAsync.playlist ├── OnDemandOrleans.playlist ├── OnDemandSync.playlist └── VeryLongRunning.playlist ├── TestsSolutions ├── ConsoleApplication1 │ └── base │ │ ├── ClassLibrary1 │ │ ├── ClassLibrary1.csproj │ │ ├── IRemoteClass1.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── RemoteClass1.cs │ │ ├── ConsoleApplication1.sln │ │ └── ConsoleApplication1 │ │ ├── App.config │ │ ├── ConsoleApplication1.csproj │ │ ├── ITest.cs │ │ ├── IUnique.cs │ │ ├── LocalClass2.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Test.cs │ │ ├── Test2.cs │ │ ├── Test3.cs │ │ ├── TestDelegate.cs │ │ ├── Testing.cs │ │ └── Unique.cs ├── ConsoleApplication2 │ └── base │ │ ├── ConsoleApplication2.sln │ │ └── ConsoleApplication2 │ │ ├── App.config │ │ ├── ConsoleApplication2.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── LongTest2 │ ├── LongTest2.cs │ ├── LongTest2.csproj │ └── LongTest2.sln ├── LongTest3 │ ├── LongTest3.cs │ ├── LongTest3.csproj │ └── LongTest3.sln ├── LongTest4 │ ├── LongTest4.cs │ ├── LongTest4.csproj │ └── LongTest4.sln ├── LongTest5 │ ├── LongTest5.cs │ ├── LongTest5.csproj │ └── LongTest5.sln └── LongTest6 │ ├── LongTest6.cs │ ├── LongTest6.csproj │ └── LongTest6.sln ├── WebAPI ├── App_Start │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ ├── SwaggerConfig.cs │ └── WebApiConfig.cs ├── ClientConfiguration.xml ├── Controllers │ ├── ExperimentsController.cs │ └── OrleansController.cs ├── Global.asax ├── Global.asax.cs ├── LocalConfiguration.xml ├── Metadata │ └── deploymentTemplates │ │ └── apiappconfig.azureresource.json ├── Models │ └── IdentityModels.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Startup.cs ├── Views │ └── web.config ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebAPI.csproj ├── WebApi.dll.Debug.config ├── WebApi.dll.Release.config ├── WebApi.dll.config ├── WebRole.cs ├── apiapp.json ├── packages.config └── scripts │ └── EnablePowerShell.cmd ├── WebRole1 ├── About.aspx ├── About.aspx.cs ├── About.aspx.designer.cs ├── Account │ ├── AddPhoneNumber.aspx │ ├── AddPhoneNumber.aspx.cs │ ├── AddPhoneNumber.aspx.designer.cs │ ├── Confirm.aspx │ ├── Confirm.aspx.cs │ ├── Confirm.aspx.designer.cs │ ├── Forgot.aspx │ ├── Forgot.aspx.cs │ ├── Forgot.aspx.designer.cs │ ├── Lockout.aspx │ ├── Lockout.aspx.cs │ ├── Lockout.aspx.designer.cs │ ├── Login.aspx │ ├── Login.aspx.cs │ ├── Login.aspx.designer.cs │ ├── Manage.aspx │ ├── Manage.aspx.cs │ ├── Manage.aspx.designer.cs │ ├── ManageLogins.aspx │ ├── ManageLogins.aspx.cs │ ├── ManageLogins.aspx.designer.cs │ ├── ManagePassword.aspx │ ├── ManagePassword.aspx.cs │ ├── ManagePassword.aspx.designer.cs │ ├── OpenAuthProviders.ascx │ ├── OpenAuthProviders.ascx.cs │ ├── OpenAuthProviders.ascx.designer.cs │ ├── Register.aspx │ ├── Register.aspx.cs │ ├── Register.aspx.designer.cs │ ├── RegisterExternalLogin.aspx │ ├── RegisterExternalLogin.aspx.cs │ ├── RegisterExternalLogin.aspx.designer.cs │ ├── ResetPassword.aspx │ ├── ResetPassword.aspx.cs │ ├── ResetPassword.aspx.designer.cs │ ├── ResetPasswordConfirmation.aspx │ ├── ResetPasswordConfirmation.aspx.cs │ ├── ResetPasswordConfirmation.aspx.designer.cs │ ├── TwoFactorAuthenticationSignIn.aspx │ ├── TwoFactorAuthenticationSignIn.aspx.cs │ ├── TwoFactorAuthenticationSignIn.aspx.designer.cs │ ├── VerifyPhoneNumber.aspx │ ├── VerifyPhoneNumber.aspx.cs │ ├── VerifyPhoneNumber.aspx.designer.cs │ └── Web.config ├── App_Start │ ├── BundleConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ └── Startup.Auth.cs ├── ApplicationInsights.config ├── Bundle.config ├── ClientConfiguration.xml ├── Contact.aspx ├── Contact.aspx.cs ├── Contact.aspx.designer.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── Default.aspx ├── Default.aspx.cs ├── Default.aspx.designer.cs ├── Global.asax ├── Global.asax.cs ├── LocalConfiguration.xml ├── Models │ └── IdentityModels.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── WebForms │ │ ├── DetailsView.js │ │ ├── Focus.js │ │ ├── GridView.js │ │ ├── MSAjax │ │ │ ├── MicrosoftAjax.js │ │ │ ├── MicrosoftAjaxApplicationServices.js │ │ │ ├── MicrosoftAjaxComponentModel.js │ │ │ ├── MicrosoftAjaxCore.js │ │ │ ├── MicrosoftAjaxGlobalization.js │ │ │ ├── MicrosoftAjaxHistory.js │ │ │ ├── MicrosoftAjaxNetwork.js │ │ │ ├── MicrosoftAjaxSerialization.js │ │ │ ├── MicrosoftAjaxTimer.js │ │ │ ├── MicrosoftAjaxWebForms.js │ │ │ └── MicrosoftAjaxWebServices.js │ │ ├── Menu.js │ │ ├── MenuStandards.js │ │ ├── SmartNav.js │ │ ├── TreeView.js │ │ ├── WebForms.js │ │ ├── WebParts.js │ │ └── WebUIValidation.js │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Site.Master ├── Site.Master.cs ├── Site.Master.designer.cs ├── Site.Mobile.Master ├── Site.Mobile.Master.cs ├── Site.Mobile.Master.designer.cs ├── Startup.cs ├── ViewSwitcher.ascx ├── ViewSwitcher.ascx.cs ├── ViewSwitcher.ascx.designer.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebRole.cs ├── WebRole1.csproj ├── WebRole1.dll.Debug.config ├── WebRole1.dll.Release.config ├── WebRole1.dll.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── packagesOrleansToReplace ├── Microsoft.Orleans.Client.1.0.9 ├── content │ └── ClientConfiguration.xml └── tools │ └── install.ps1 ├── Microsoft.Orleans.Core.1.0.9 └── lib │ └── net45 │ ├── Orleans.XML │ └── Orleans.dll ├── Microsoft.Orleans.OrleansAzureUtils.1.0.9 └── lib │ └── net45 │ ├── OrleansAzureUtils.XML │ └── OrleansAzureUtils.dll ├── Microsoft.Orleans.OrleansHost.1.0.9 └── lib │ └── net45 │ ├── OrleansHost.exe │ └── OrleansHost.exe.config ├── Microsoft.Orleans.OrleansProviders.1.0.9 └── lib │ └── net45 │ ├── OrleansProviders.dll │ └── SQLServer │ └── CreateOrleansTables_SqlServer.sql ├── Microsoft.Orleans.OrleansRuntime.1.0.9 └── lib │ └── net45 │ └── OrleansRuntime.dll ├── Microsoft.Orleans.Templates.Grains.1.0.9 └── tools │ ├── ClientGenerator.exe │ ├── ClientGenerator.exe.config │ └── Orleans.dll ├── Microsoft.Orleans.Templates.Interfaces.1.0.9 └── tools │ ├── ClientGenerator.exe │ ├── ClientGenerator.exe.config │ └── Orleans.dll └── Microsoft.Orleans.TestingHost.1.0.9 ├── content ├── ClientConfigurationForTesting.xml └── OrleansConfigurationForTesting.xml ├── lib └── net45 │ └── OrleansTestingHost.dll └── tools └── install.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /AnalysisCore/AnalysisCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/AnalysisCore.csproj -------------------------------------------------------------------------------- /AnalysisCore/AnalysisMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/AnalysisMessages.cs -------------------------------------------------------------------------------- /AnalysisCore/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/ApplicationInsights.config -------------------------------------------------------------------------------- /AnalysisCore/Async/AsyncDummyProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Async/AsyncDummyProjectCodeProvider.cs -------------------------------------------------------------------------------- /AnalysisCore/Async/AsyncProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Async/AsyncProjectCodeProvider.cs -------------------------------------------------------------------------------- /AnalysisCore/Async/AsyncSolutionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Async/AsyncSolutionManager.cs -------------------------------------------------------------------------------- /AnalysisCore/BaseManagers/BaseProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/BaseManagers/BaseProjectCodeProvider.cs -------------------------------------------------------------------------------- /AnalysisCore/BaseManagers/DummyProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/BaseManagers/DummyProjectCodeProvider.cs -------------------------------------------------------------------------------- /AnalysisCore/BaseManagers/MethodEntityPropagator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/BaseManagers/MethodEntityPropagator.cs -------------------------------------------------------------------------------- /AnalysisCore/BaseManagers/ProjectCodeProviderIncremental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/BaseManagers/ProjectCodeProviderIncremental.cs -------------------------------------------------------------------------------- /AnalysisCore/BaseManagers/RtaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/BaseManagers/RtaManager.cs -------------------------------------------------------------------------------- /AnalysisCore/BaseManagers/SolutionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/BaseManagers/SolutionManager.cs -------------------------------------------------------------------------------- /AnalysisCore/Graph/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Graph/Graph.cs -------------------------------------------------------------------------------- /AnalysisCore/Graph/GraphAnnotationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Graph/GraphAnnotationData.cs -------------------------------------------------------------------------------- /AnalysisCore/Graph/GraphvizAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Graph/GraphvizAdapter.cs -------------------------------------------------------------------------------- /AnalysisCore/Graph/IGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Graph/IGraph.cs -------------------------------------------------------------------------------- /AnalysisCore/Graph/PropagationGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Graph/PropagationGraph.cs -------------------------------------------------------------------------------- /AnalysisCore/Graph/PropagationGraphAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Graph/PropagationGraphAsync.cs -------------------------------------------------------------------------------- /AnalysisCore/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/IEntity.cs -------------------------------------------------------------------------------- /AnalysisCore/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Logger.cs -------------------------------------------------------------------------------- /AnalysisCore/MethodEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/MethodEntity.cs -------------------------------------------------------------------------------- /AnalysisCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/CodeGraphHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/CodeGraphHelper.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/DocumentDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/DocumentDiff.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/ExpressionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/ExpressionVisitor.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/LibraryMethodProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/LibraryMethodProcessor.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/MethodSimpifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/MethodSimpifier.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/RoslynASTVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/RoslynASTVisitor.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/RoslynSymbolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/RoslynSymbolFactory.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/SolutionFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/SolutionFileGenerator.cs -------------------------------------------------------------------------------- /AnalysisCore/Roslyn/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Roslyn/Utils.cs -------------------------------------------------------------------------------- /AnalysisCore/StatementProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/StatementProcessor.cs -------------------------------------------------------------------------------- /AnalysisCore/Tests/TestSources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/Tests/TestSources.cs -------------------------------------------------------------------------------- /AnalysisCore/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/app.config -------------------------------------------------------------------------------- /AnalysisCore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AnalysisCore/packages.config -------------------------------------------------------------------------------- /AzureScripts/AzureScripts.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/AzureScripts.pssproj -------------------------------------------------------------------------------- /AzureScripts/ChangeNumberOfInstances.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/ChangeNumberOfInstances.ps1 -------------------------------------------------------------------------------- /AzureScripts/ConnectToAzure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/ConnectToAzure.ps1 -------------------------------------------------------------------------------- /AzureScripts/InstallVS2015.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InstallVS2015.ps1 -------------------------------------------------------------------------------- /AzureScripts/InvokeCmd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InvokeCmd.ps1 -------------------------------------------------------------------------------- /AzureScripts/InvokeGrainDeactivation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InvokeGrainDeactivation.ps1 -------------------------------------------------------------------------------- /AzureScripts/InvokeRandomQueries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InvokeRandomQueries.ps1 -------------------------------------------------------------------------------- /AzureScripts/InvokeRemoveStats.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InvokeRemoveStats.ps1 -------------------------------------------------------------------------------- /AzureScripts/InvokeSolutionExperiment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InvokeSolutionExperiment.ps1 -------------------------------------------------------------------------------- /AzureScripts/InvokeTestExperiments.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/InvokeTestExperiments.ps1 -------------------------------------------------------------------------------- /AzureScripts/RunAllTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/RunAllTest.ps1 -------------------------------------------------------------------------------- /AzureScripts/RunAllTestsForInstance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/RunAllTestsForInstance.ps1 -------------------------------------------------------------------------------- /AzureScripts/RunTestForInstance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/RunTestForInstance.ps1 -------------------------------------------------------------------------------- /AzureScripts/Stop-Start-CloudService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/Stop-Start-CloudService.ps1 -------------------------------------------------------------------------------- /AzureScripts/Subscriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/Subscriptions.txt -------------------------------------------------------------------------------- /AzureScripts/UpdateCloudConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/UpdateCloudConfig.ps1 -------------------------------------------------------------------------------- /AzureScripts/WaitAnalysisReady.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/WaitAnalysisReady.ps1 -------------------------------------------------------------------------------- /AzureScripts/WindowsPowerShell/Modules/Update-CloudServiceScale/Update-CloudServiceScale.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/AzureScripts/WindowsPowerShell/Modules/Update-CloudServiceScale/Update-CloudServiceScale.psm1 -------------------------------------------------------------------------------- /CallGraphGeneration/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CallGraphGeneration/App.config -------------------------------------------------------------------------------- /CallGraphGeneration/CallGraphGeneration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CallGraphGeneration/CallGraphGeneration.csproj -------------------------------------------------------------------------------- /CallGraphGeneration/OrleansHostWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CallGraphGeneration/OrleansHostWrapper.cs -------------------------------------------------------------------------------- /CallGraphGeneration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CallGraphGeneration/Program.cs -------------------------------------------------------------------------------- /CallGraphGeneration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CallGraphGeneration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CallGraphGeneration/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CallGraphGeneration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CallGraphGeneration/packages.config -------------------------------------------------------------------------------- /CodeGraphModel/Annotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/Annotation.cs -------------------------------------------------------------------------------- /CodeGraphModel/CodeGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/CodeGraph.cs -------------------------------------------------------------------------------- /CodeGraphModel/CodeGraphModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/CodeGraphModel.csproj -------------------------------------------------------------------------------- /CodeGraphModel/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/Constants.cs -------------------------------------------------------------------------------- /CodeGraphModel/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/Entity.cs -------------------------------------------------------------------------------- /CodeGraphModel/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/File.cs -------------------------------------------------------------------------------- /CodeGraphModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeGraphModel/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/Symbol.cs -------------------------------------------------------------------------------- /CodeGraphModel/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/CodeGraphModel/Vertex.cs -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/DevTestClientConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/DevTestClientConfiguration.xml -------------------------------------------------------------------------------- /Common/DevTestServerConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/DevTestServerConfiguration.xml -------------------------------------------------------------------------------- /Common/Graph/CallNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Graph/CallNodes.cs -------------------------------------------------------------------------------- /Common/Graph/GraphAnnotationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Graph/GraphAnnotationData.cs -------------------------------------------------------------------------------- /Common/Graph/GraphvizAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Graph/GraphvizAdapter.cs -------------------------------------------------------------------------------- /Common/Graph/PropagationEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Graph/PropagationEffects.cs -------------------------------------------------------------------------------- /Common/Graph/PropagationGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Graph/PropagationGraph.cs -------------------------------------------------------------------------------- /Common/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/IEntity.cs -------------------------------------------------------------------------------- /Common/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Interfaces.cs -------------------------------------------------------------------------------- /Common/MethodEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/MethodEntity.cs -------------------------------------------------------------------------------- /Common/OrleansHostWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/OrleansHostWrapper.cs -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Common/Roslyn/CodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Roslyn/CodeProvider.cs -------------------------------------------------------------------------------- /Common/Roslyn/RoslynSymbolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Roslyn/RoslynSymbolFactory.cs -------------------------------------------------------------------------------- /Common/Roslyn/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Roslyn/Utils.cs -------------------------------------------------------------------------------- /Common/SerializableTypes/AnalysisTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/SerializableTypes/AnalysisTypes.cs -------------------------------------------------------------------------------- /Common/SerializableTypes/CallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/SerializableTypes/CallInfo.cs -------------------------------------------------------------------------------- /Common/SerializableTypes/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/SerializableTypes/Messages.cs -------------------------------------------------------------------------------- /Common/SerializableTypes/PropagationEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/SerializableTypes/PropagationEffects.cs -------------------------------------------------------------------------------- /Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/Utils.cs -------------------------------------------------------------------------------- /Common/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/app.config -------------------------------------------------------------------------------- /Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/Common/packages.config -------------------------------------------------------------------------------- /ConsoleCobyClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleCobyClient/App.config -------------------------------------------------------------------------------- /ConsoleCobyClient/ConsoleCobyClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleCobyClient/ConsoleCobyClient.csproj -------------------------------------------------------------------------------- /ConsoleCobyClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleCobyClient/Program.cs -------------------------------------------------------------------------------- /ConsoleCobyClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleCobyClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConsoleCobyClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleCobyClient/packages.config -------------------------------------------------------------------------------- /ConsoleServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/App.config -------------------------------------------------------------------------------- /ConsoleServer/ClientConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/ClientConfigurationForTesting.xml -------------------------------------------------------------------------------- /ConsoleServer/ConsoleServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/ConsoleServer.csproj -------------------------------------------------------------------------------- /ConsoleServer/Controllers/OrleansController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/Controllers/OrleansController.cs -------------------------------------------------------------------------------- /ConsoleServer/OrleansConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/OrleansConfigurationForTesting.xml -------------------------------------------------------------------------------- /ConsoleServer/OrleansHostWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/OrleansHostWrapper.cs -------------------------------------------------------------------------------- /ConsoleServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/Program.cs -------------------------------------------------------------------------------- /ConsoleServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConsoleServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/Startup.cs -------------------------------------------------------------------------------- /ConsoleServer/Utils/Algorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/Utils/Algorithms.cs -------------------------------------------------------------------------------- /ConsoleServer/Utils/TimedLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/Utils/TimedLog.cs -------------------------------------------------------------------------------- /ConsoleServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ConsoleServer/packages.config -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OrleansAzureSilos/OrleansAzureSilos.ccproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/OrleansAzureSilos.ccproj -------------------------------------------------------------------------------- /OrleansAzureSilos/OrleansSilosInAzureContent/diagnostics.wadcfgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/OrleansSilosInAzureContent/diagnostics.wadcfgx -------------------------------------------------------------------------------- /OrleansAzureSilos/ServiceConfiguration.Cloud.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/ServiceConfiguration.Cloud.cscfg -------------------------------------------------------------------------------- /OrleansAzureSilos/ServiceConfiguration.Local.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/ServiceConfiguration.Local.cscfg -------------------------------------------------------------------------------- /OrleansAzureSilos/ServiceDefinition.csdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/ServiceDefinition.csdef -------------------------------------------------------------------------------- /OrleansAzureSilos/WebAPIContent/diagnostics.wadcfgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/WebAPIContent/diagnostics.wadcfgx -------------------------------------------------------------------------------- /OrleansAzureSilos/WebRole1Content/diagnostics.wadcfgx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansAzureSilos/WebRole1Content/diagnostics.wadcfgx -------------------------------------------------------------------------------- /OrleansGrains/MethodEntity/MethodEntityGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/MethodEntity/MethodEntityGrain.cs -------------------------------------------------------------------------------- /OrleansGrains/MethodEntity/MethodEntityGrainCallerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/MethodEntity/MethodEntityGrainCallerWrapper.cs -------------------------------------------------------------------------------- /OrleansGrains/MethodEntity/OrleansMethodEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/MethodEntity/OrleansMethodEntity.cs -------------------------------------------------------------------------------- /OrleansGrains/OrleansGrains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/OrleansGrains.csproj -------------------------------------------------------------------------------- /OrleansGrains/ProjectCodeProvider/OrleansDummyProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/ProjectCodeProvider/OrleansDummyProjectCodeProvider.cs -------------------------------------------------------------------------------- /OrleansGrains/ProjectCodeProvider/OrleansProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/ProjectCodeProvider/OrleansProjectCodeProvider.cs -------------------------------------------------------------------------------- /OrleansGrains/ProjectCodeProvider/ProjectCodeProviderGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/ProjectCodeProvider/ProjectCodeProviderGrain.cs -------------------------------------------------------------------------------- /OrleansGrains/ProjectCodeProvider/ProjectCodeProviderGrainCallerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/ProjectCodeProvider/ProjectCodeProviderGrainCallerWrapper.cs -------------------------------------------------------------------------------- /OrleansGrains/ProjectCodeProvider/ProjectCodeProviderWithCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/ProjectCodeProvider/ProjectCodeProviderWithCache.cs -------------------------------------------------------------------------------- /OrleansGrains/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OrleansGrains/Rta/OrleansRtaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Rta/OrleansRtaManager.cs -------------------------------------------------------------------------------- /OrleansGrains/Rta/RtaGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Rta/RtaGrain.cs -------------------------------------------------------------------------------- /OrleansGrains/Rta/RtaGrainCallerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Rta/RtaGrainCallerWrapper.cs -------------------------------------------------------------------------------- /OrleansGrains/SiloOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/SiloOrchestrator.cs -------------------------------------------------------------------------------- /OrleansGrains/Solution/OrleansSolutionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Solution/OrleansSolutionManager.cs -------------------------------------------------------------------------------- /OrleansGrains/Solution/SolutionGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Solution/SolutionGrain.cs -------------------------------------------------------------------------------- /OrleansGrains/Solution/SolutionGrainCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Solution/SolutionGrainCache.cs -------------------------------------------------------------------------------- /OrleansGrains/Solution/SolutionGrainCallerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/Solution/SolutionGrainCallerWrapper.cs -------------------------------------------------------------------------------- /OrleansGrains/StatsGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/StatsGrain.cs -------------------------------------------------------------------------------- /OrleansGrains/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/app.config -------------------------------------------------------------------------------- /OrleansGrains/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansGrains/packages.config -------------------------------------------------------------------------------- /OrleansInterfaces/IMethodEntityGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/IMethodEntityGrain.cs -------------------------------------------------------------------------------- /OrleansInterfaces/IProjectCodeProviderGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/IProjectCodeProviderGrain.cs -------------------------------------------------------------------------------- /OrleansInterfaces/IRtaGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/IRtaGrain.cs -------------------------------------------------------------------------------- /OrleansInterfaces/ISolutionGrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/ISolutionGrain.cs -------------------------------------------------------------------------------- /OrleansInterfaces/IStatsGrains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/IStatsGrains.cs -------------------------------------------------------------------------------- /OrleansInterfaces/Observers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/Observers.cs -------------------------------------------------------------------------------- /OrleansInterfaces/OrleansInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/OrleansInterfaces.csproj -------------------------------------------------------------------------------- /OrleansInterfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OrleansInterfaces/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansInterfaces/packages.config -------------------------------------------------------------------------------- /OrleansSilosInAzure/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/ApplicationInsights.config -------------------------------------------------------------------------------- /OrleansSilosInAzure/OrleansConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/OrleansConfiguration.xml -------------------------------------------------------------------------------- /OrleansSilosInAzure/OrleansLocalConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/OrleansLocalConfiguration.xml -------------------------------------------------------------------------------- /OrleansSilosInAzure/OrleansSilosInAzure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/OrleansSilosInAzure.csproj -------------------------------------------------------------------------------- /OrleansSilosInAzure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OrleansSilosInAzure/WadExample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/WadExample.xml -------------------------------------------------------------------------------- /OrleansSilosInAzure/WorkerRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/WorkerRole.cs -------------------------------------------------------------------------------- /OrleansSilosInAzure/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/app.config -------------------------------------------------------------------------------- /OrleansSilosInAzure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/packages.config -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/AzCopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/AzCopy.exe -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.WindowsAzure.Storage.DataMovement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.WindowsAzure.Storage.DataMovement.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.WindowsAzure.Storage.TableDataMovement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.WindowsAzure.Storage.TableDataMovement.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/AzCopy/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/AzCopy/System.Spatial.dll -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/External/BuildTools_Full.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/External/BuildTools_Full.exe -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/GCSettingsManagement.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/GCSettingsManagement.ps1 -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/InstallNET46.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/InstallNET46.cmd -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/InstallVS2015-v2.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/InstallVS2015-v2.cmd -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/InstallVS2015.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/InstallVS2015.cmd -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/RunAzureCopy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/RunAzureCopy.cmd -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/ServerGC.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/ServerGC.cmd -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/SetupExternalTasks.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/SetupExternalTasks.cmd -------------------------------------------------------------------------------- /OrleansSilosInAzure/scripts/SetupExternalTasks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansSilosInAzure/scripts/SetupExternalTasks.ps1 -------------------------------------------------------------------------------- /OrleansTests/BasicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/BasicTest.cs -------------------------------------------------------------------------------- /OrleansTests/ClientConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/ClientConfigurationForTesting.xml -------------------------------------------------------------------------------- /OrleansTests/OrleansConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/OrleansConfigurationForTesting.xml -------------------------------------------------------------------------------- /OrleansTests/OrleansTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/OrleansTests.csproj -------------------------------------------------------------------------------- /OrleansTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OrleansTests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/Tests.cs -------------------------------------------------------------------------------- /OrleansTests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/UnitTest1.cs -------------------------------------------------------------------------------- /OrleansTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/app.config -------------------------------------------------------------------------------- /OrleansTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/OrleansTests/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/README.md -------------------------------------------------------------------------------- /ReachingTypeAnalysis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis.sln -------------------------------------------------------------------------------- /ReachingTypeAnalysis/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/.nuget/NuGet.Config -------------------------------------------------------------------------------- /ReachingTypeAnalysis/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/.nuget/NuGet.exe -------------------------------------------------------------------------------- /ReachingTypeAnalysis/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/.nuget/NuGet.targets -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Analysis/AnalysisOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Analysis/AnalysisOrchestrator.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Analysis/CallGraphQueryInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Analysis/CallGraphQueryInterface.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Analysis/SolutionAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Analysis/SolutionAnalyzer.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/App.config -------------------------------------------------------------------------------- /ReachingTypeAnalysis/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/ApplicationInsights.config -------------------------------------------------------------------------------- /ReachingTypeAnalysis/CallGraph/CallGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/CallGraph/CallGraph.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/CallGraph/DGMLGraphDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/CallGraph/DGMLGraphDataAdapter.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/CallGraph/GraphVizGraphDataAdapter .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/CallGraph/GraphVizGraphDataAdapter .cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/ClientConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/ClientConfigurationForTesting.xml -------------------------------------------------------------------------------- /ReachingTypeAnalysis/MethodWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/MethodWorker.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Orleans/Driver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Orleans/Driver/Program.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Orleans/OrleansHostWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Orleans/OrleansHostWrapper.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/OrleansConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/OrleansConfigurationForTesting.xml -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/ReachingTypeAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/ReachingTypeAnalysis.csproj -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Statistics/AnalysisClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Statistics/AnalysisClient.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Statistics/SolutionStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Statistics/SolutionStats.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Statistics/TableEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Statistics/TableEntries.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/BasicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/BasicTest.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/CallGraphGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/CallGraphGenerator.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/ConcurrencyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/ConcurrencyTest.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/Incremental.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/Incremental.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/IncrementalAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/IncrementalAsync.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/IncrementalDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/IncrementalDiff.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/IncrementalOrleans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/IncrementalOrleans.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/LongTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/LongTests.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/QueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/QueryTests.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/SolutionTests.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/SoundnessEntireAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/SoundnessEntireAsync.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/SoundnessOnDemandAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/SoundnessOnDemandAsync.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/SoundnessOnDemandOrleans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/SoundnessOnDemandOrleans.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/Tests/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/Tests/TestUtils.cs -------------------------------------------------------------------------------- /ReachingTypeAnalysis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/ReachingTypeAnalysis/packages.config -------------------------------------------------------------------------------- /References/Microsoft.CodeAnalysis.Tachyon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/References/Microsoft.CodeAnalysis.Tachyon.dll -------------------------------------------------------------------------------- /References/Microsoft.CodeAnalysis.Tachyon.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/References/Microsoft.CodeAnalysis.Tachyon.pdb -------------------------------------------------------------------------------- /StandaloneOrleansAzure/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/App.config -------------------------------------------------------------------------------- /StandaloneOrleansAzure/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/ApplicationInsights.config -------------------------------------------------------------------------------- /StandaloneOrleansAzure/ClientConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/ClientConfiguration.xml -------------------------------------------------------------------------------- /StandaloneOrleansAzure/OrleansConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/OrleansConfiguration.xml -------------------------------------------------------------------------------- /StandaloneOrleansAzure/OrleansHostWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/OrleansHostWrapper.cs -------------------------------------------------------------------------------- /StandaloneOrleansAzure/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/Program.cs -------------------------------------------------------------------------------- /StandaloneOrleansAzure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StandaloneOrleansAzure/StandaloneOrleansAzure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/StandaloneOrleansAzure.csproj -------------------------------------------------------------------------------- /StandaloneOrleansAzure/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StandaloneOrleansAzure/packages.config -------------------------------------------------------------------------------- /StatsProject/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/App.config -------------------------------------------------------------------------------- /StatsProject/ClientConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/ClientConfigurationForTesting.xml -------------------------------------------------------------------------------- /StatsProject/OrleansConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/OrleansConfigurationForTesting.xml -------------------------------------------------------------------------------- /StatsProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/Program.cs -------------------------------------------------------------------------------- /StatsProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StatsProject/Properties/orleans.codegen.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StatsProject/StatsProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/StatsProject.csproj -------------------------------------------------------------------------------- /StatsProject/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StatsProject/packages.config -------------------------------------------------------------------------------- /StorageProviders/BaseJSONStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StorageProviders/BaseJSONStorageProvider.cs -------------------------------------------------------------------------------- /StorageProviders/FileStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StorageProviders/FileStorageProvider.cs -------------------------------------------------------------------------------- /StorageProviders/IJSONStateDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StorageProviders/IJSONStateDataManager.cs -------------------------------------------------------------------------------- /StorageProviders/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StorageProviders/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StorageProviders/Samples.StorageProviders.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StorageProviders/Samples.StorageProviders.csproj -------------------------------------------------------------------------------- /StorageProviders/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/StorageProviders/packages.config -------------------------------------------------------------------------------- /SyncVersion/CallGraph/CallGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/CallGraph/CallGraph.cs -------------------------------------------------------------------------------- /SyncVersion/CallGraph/DGMLGraphDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/CallGraph/DGMLGraphDataAdapter.cs -------------------------------------------------------------------------------- /SyncVersion/CallGraph/GraphVizGraphDataAdapter .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/CallGraph/GraphVizGraphDataAdapter .cs -------------------------------------------------------------------------------- /SyncVersion/Communication/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/IDispatcher.cs -------------------------------------------------------------------------------- /SyncVersion/Communication/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/IEntity.cs -------------------------------------------------------------------------------- /SyncVersion/Communication/IEntityProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/IEntityProcessor.cs -------------------------------------------------------------------------------- /SyncVersion/Communication/OnDemandSolutionDispacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/OnDemandSolutionDispacher.cs -------------------------------------------------------------------------------- /SyncVersion/Communication/QueueingDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/QueueingDispatcher.cs -------------------------------------------------------------------------------- /SyncVersion/Communication/Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/Serialization.cs -------------------------------------------------------------------------------- /SyncVersion/Communication/SynchronousLocalDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Communication/SynchronousLocalDispatcher.cs -------------------------------------------------------------------------------- /SyncVersion/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SyncVersion/Roslyn/ProjectCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Roslyn/ProjectCodeProvider.cs -------------------------------------------------------------------------------- /SyncVersion/Roslyn/ProjectCodeProviderLegacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Roslyn/ProjectCodeProviderLegacy.cs -------------------------------------------------------------------------------- /SyncVersion/SolutionAnalyzerSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/SolutionAnalyzerSync.cs -------------------------------------------------------------------------------- /SyncVersion/SyncLegacyVersion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/SyncLegacyVersion.csproj -------------------------------------------------------------------------------- /SyncVersion/SyncVersion/MethodEntityProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/SyncVersion/MethodEntityProcessor.cs -------------------------------------------------------------------------------- /SyncVersion/SyncVersion/MethodEntityProcessorAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/SyncVersion/MethodEntityProcessorAsync.cs -------------------------------------------------------------------------------- /SyncVersion/Tests/BasicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Tests/BasicTest.cs -------------------------------------------------------------------------------- /SyncVersion/Tests/LongTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Tests/LongTests.cs -------------------------------------------------------------------------------- /SyncVersion/Tests/SoundnessEntireSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Tests/SoundnessEntireSync.cs -------------------------------------------------------------------------------- /SyncVersion/Tests/SoundnessOnDemandSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Tests/SoundnessOnDemandSync.cs -------------------------------------------------------------------------------- /SyncVersion/Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/Tests/Tests.cs -------------------------------------------------------------------------------- /SyncVersion/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/app.config -------------------------------------------------------------------------------- /SyncVersion/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/SyncVersion/packages.config -------------------------------------------------------------------------------- /TestPlaylists/Generated.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestPlaylists/Generated.playlist -------------------------------------------------------------------------------- /TestPlaylists/OnDemandAsync.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestPlaylists/OnDemandAsync.playlist -------------------------------------------------------------------------------- /TestPlaylists/OnDemandOrleans.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestPlaylists/OnDemandOrleans.playlist -------------------------------------------------------------------------------- /TestPlaylists/OnDemandSync.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestPlaylists/OnDemandSync.playlist -------------------------------------------------------------------------------- /TestPlaylists/VeryLongRunning.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestPlaylists/VeryLongRunning.playlist -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ClassLibrary1/IRemoteClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ClassLibrary1/IRemoteClass1.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ClassLibrary1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ClassLibrary1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ClassLibrary1/RemoteClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ClassLibrary1/RemoteClass1.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1.sln -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/App.config -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/ConsoleApplication1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/ConsoleApplication1.csproj -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/ITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/ITest.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/IUnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/IUnique.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/LocalClass2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/LocalClass2.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Program.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Test.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Test2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Test2.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Test3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Test3.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/TestDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/TestDelegate.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Testing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Testing.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Unique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication1/base/ConsoleApplication1/Unique.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication2/base/ConsoleApplication2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication2/base/ConsoleApplication2.sln -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/App.config -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/ConsoleApplication2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/ConsoleApplication2.csproj -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/Program.cs -------------------------------------------------------------------------------- /TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/ConsoleApplication2/base/ConsoleApplication2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestsSolutions/LongTest2/LongTest2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest2/LongTest2.cs -------------------------------------------------------------------------------- /TestsSolutions/LongTest2/LongTest2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest2/LongTest2.csproj -------------------------------------------------------------------------------- /TestsSolutions/LongTest2/LongTest2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest2/LongTest2.sln -------------------------------------------------------------------------------- /TestsSolutions/LongTest3/LongTest3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest3/LongTest3.cs -------------------------------------------------------------------------------- /TestsSolutions/LongTest3/LongTest3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest3/LongTest3.csproj -------------------------------------------------------------------------------- /TestsSolutions/LongTest3/LongTest3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest3/LongTest3.sln -------------------------------------------------------------------------------- /TestsSolutions/LongTest4/LongTest4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest4/LongTest4.cs -------------------------------------------------------------------------------- /TestsSolutions/LongTest4/LongTest4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest4/LongTest4.csproj -------------------------------------------------------------------------------- /TestsSolutions/LongTest4/LongTest4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest4/LongTest4.sln -------------------------------------------------------------------------------- /TestsSolutions/LongTest5/LongTest5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest5/LongTest5.cs -------------------------------------------------------------------------------- /TestsSolutions/LongTest5/LongTest5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest5/LongTest5.csproj -------------------------------------------------------------------------------- /TestsSolutions/LongTest5/LongTest5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest5/LongTest5.sln -------------------------------------------------------------------------------- /TestsSolutions/LongTest6/LongTest6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest6/LongTest6.cs -------------------------------------------------------------------------------- /TestsSolutions/LongTest6/LongTest6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest6/LongTest6.csproj -------------------------------------------------------------------------------- /TestsSolutions/LongTest6/LongTest6.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/TestsSolutions/LongTest6/LongTest6.sln -------------------------------------------------------------------------------- /WebAPI/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /WebAPI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WebAPI/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /WebAPI/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /WebAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /WebAPI/ClientConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/ClientConfiguration.xml -------------------------------------------------------------------------------- /WebAPI/Controllers/ExperimentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Controllers/ExperimentsController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/OrleansController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Controllers/OrleansController.cs -------------------------------------------------------------------------------- /WebAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Global.asax -------------------------------------------------------------------------------- /WebAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Global.asax.cs -------------------------------------------------------------------------------- /WebAPI/LocalConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/LocalConfiguration.xml -------------------------------------------------------------------------------- /WebAPI/Metadata/deploymentTemplates/apiappconfig.azureresource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Metadata/deploymentTemplates/apiappconfig.azureresource.json -------------------------------------------------------------------------------- /WebAPI/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Models/IdentityModels.cs -------------------------------------------------------------------------------- /WebAPI/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Project_Readme.html -------------------------------------------------------------------------------- /WebAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Views/web.config -------------------------------------------------------------------------------- /WebAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Web.Debug.config -------------------------------------------------------------------------------- /WebAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Web.Release.config -------------------------------------------------------------------------------- /WebAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/Web.config -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/WebApi.dll.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/WebApi.dll.Debug.config -------------------------------------------------------------------------------- /WebAPI/WebApi.dll.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/WebApi.dll.Release.config -------------------------------------------------------------------------------- /WebAPI/WebApi.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/WebApi.dll.config -------------------------------------------------------------------------------- /WebAPI/WebRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/WebRole.cs -------------------------------------------------------------------------------- /WebAPI/apiapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/apiapp.json -------------------------------------------------------------------------------- /WebAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/packages.config -------------------------------------------------------------------------------- /WebAPI/scripts/EnablePowerShell.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebAPI/scripts/EnablePowerShell.cmd -------------------------------------------------------------------------------- /WebRole1/About.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/About.aspx -------------------------------------------------------------------------------- /WebRole1/About.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/About.aspx.cs -------------------------------------------------------------------------------- /WebRole1/About.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/About.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/AddPhoneNumber.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/AddPhoneNumber.aspx -------------------------------------------------------------------------------- /WebRole1/Account/AddPhoneNumber.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/AddPhoneNumber.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/AddPhoneNumber.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/AddPhoneNumber.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Confirm.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Confirm.aspx -------------------------------------------------------------------------------- /WebRole1/Account/Confirm.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Confirm.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/Confirm.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Confirm.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Forgot.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Forgot.aspx -------------------------------------------------------------------------------- /WebRole1/Account/Forgot.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Forgot.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/Forgot.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Forgot.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Lockout.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Lockout.aspx -------------------------------------------------------------------------------- /WebRole1/Account/Lockout.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Lockout.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/Lockout.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Lockout.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Login.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Login.aspx -------------------------------------------------------------------------------- /WebRole1/Account/Login.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Login.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/Login.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Login.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Manage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Manage.aspx -------------------------------------------------------------------------------- /WebRole1/Account/Manage.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Manage.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/Manage.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Manage.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/ManageLogins.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ManageLogins.aspx -------------------------------------------------------------------------------- /WebRole1/Account/ManageLogins.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ManageLogins.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/ManageLogins.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ManageLogins.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/ManagePassword.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ManagePassword.aspx -------------------------------------------------------------------------------- /WebRole1/Account/ManagePassword.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ManagePassword.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/ManagePassword.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ManagePassword.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/OpenAuthProviders.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/OpenAuthProviders.ascx -------------------------------------------------------------------------------- /WebRole1/Account/OpenAuthProviders.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/OpenAuthProviders.ascx.cs -------------------------------------------------------------------------------- /WebRole1/Account/OpenAuthProviders.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/OpenAuthProviders.ascx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Register.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Register.aspx -------------------------------------------------------------------------------- /WebRole1/Account/Register.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Register.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/Register.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Register.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/RegisterExternalLogin.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/RegisterExternalLogin.aspx -------------------------------------------------------------------------------- /WebRole1/Account/RegisterExternalLogin.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/RegisterExternalLogin.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/RegisterExternalLogin.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/RegisterExternalLogin.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/ResetPassword.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ResetPassword.aspx -------------------------------------------------------------------------------- /WebRole1/Account/ResetPassword.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ResetPassword.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/ResetPassword.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ResetPassword.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/ResetPasswordConfirmation.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ResetPasswordConfirmation.aspx -------------------------------------------------------------------------------- /WebRole1/Account/ResetPasswordConfirmation.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ResetPasswordConfirmation.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/ResetPasswordConfirmation.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/ResetPasswordConfirmation.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/TwoFactorAuthenticationSignIn.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/TwoFactorAuthenticationSignIn.aspx -------------------------------------------------------------------------------- /WebRole1/Account/TwoFactorAuthenticationSignIn.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/TwoFactorAuthenticationSignIn.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/TwoFactorAuthenticationSignIn.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/TwoFactorAuthenticationSignIn.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/VerifyPhoneNumber.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/VerifyPhoneNumber.aspx -------------------------------------------------------------------------------- /WebRole1/Account/VerifyPhoneNumber.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/VerifyPhoneNumber.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Account/VerifyPhoneNumber.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/VerifyPhoneNumber.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Account/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Account/Web.config -------------------------------------------------------------------------------- /WebRole1/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WebRole1/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /WebRole1/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WebRole1/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /WebRole1/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/ApplicationInsights.config -------------------------------------------------------------------------------- /WebRole1/Bundle.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Bundle.config -------------------------------------------------------------------------------- /WebRole1/ClientConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/ClientConfiguration.xml -------------------------------------------------------------------------------- /WebRole1/Contact.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Contact.aspx -------------------------------------------------------------------------------- /WebRole1/Contact.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Contact.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Contact.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Contact.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Content/Site.css -------------------------------------------------------------------------------- /WebRole1/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Content/bootstrap.css -------------------------------------------------------------------------------- /WebRole1/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WebRole1/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Default.aspx -------------------------------------------------------------------------------- /WebRole1/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Default.aspx.cs -------------------------------------------------------------------------------- /WebRole1/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Default.aspx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Global.asax -------------------------------------------------------------------------------- /WebRole1/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Global.asax.cs -------------------------------------------------------------------------------- /WebRole1/LocalConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/LocalConfiguration.xml -------------------------------------------------------------------------------- /WebRole1/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Models/IdentityModels.cs -------------------------------------------------------------------------------- /WebRole1/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Project_Readme.html -------------------------------------------------------------------------------- /WebRole1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/DetailsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/DetailsView.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/Focus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/Focus.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/GridView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/GridView.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjax.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxApplicationServices.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxComponentModel.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxCore.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxGlobalization.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxHistory.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxNetwork.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxSerialization.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxTimer.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxWebForms.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MSAjax/MicrosoftAjaxWebServices.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/Menu.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/MenuStandards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/MenuStandards.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/SmartNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/SmartNav.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/TreeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/TreeView.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/WebForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/WebForms.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/WebParts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/WebParts.js -------------------------------------------------------------------------------- /WebRole1/Scripts/WebForms/WebUIValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/WebForms/WebUIValidation.js -------------------------------------------------------------------------------- /WebRole1/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/_references.js -------------------------------------------------------------------------------- /WebRole1/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WebRole1/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WebRole1/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WebRole1/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WebRole1/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WebRole1/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WebRole1/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WebRole1/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/respond.js -------------------------------------------------------------------------------- /WebRole1/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Scripts/respond.min.js -------------------------------------------------------------------------------- /WebRole1/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Site.Master -------------------------------------------------------------------------------- /WebRole1/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Site.Master.cs -------------------------------------------------------------------------------- /WebRole1/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Site.Master.designer.cs -------------------------------------------------------------------------------- /WebRole1/Site.Mobile.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Site.Mobile.Master -------------------------------------------------------------------------------- /WebRole1/Site.Mobile.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Site.Mobile.Master.cs -------------------------------------------------------------------------------- /WebRole1/Site.Mobile.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Site.Mobile.Master.designer.cs -------------------------------------------------------------------------------- /WebRole1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Startup.cs -------------------------------------------------------------------------------- /WebRole1/ViewSwitcher.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/ViewSwitcher.ascx -------------------------------------------------------------------------------- /WebRole1/ViewSwitcher.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/ViewSwitcher.ascx.cs -------------------------------------------------------------------------------- /WebRole1/ViewSwitcher.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/ViewSwitcher.ascx.designer.cs -------------------------------------------------------------------------------- /WebRole1/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Web.Debug.config -------------------------------------------------------------------------------- /WebRole1/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Web.Release.config -------------------------------------------------------------------------------- /WebRole1/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/Web.config -------------------------------------------------------------------------------- /WebRole1/WebRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/WebRole.cs -------------------------------------------------------------------------------- /WebRole1/WebRole1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/WebRole1.csproj -------------------------------------------------------------------------------- /WebRole1/WebRole1.dll.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/WebRole1.dll.Debug.config -------------------------------------------------------------------------------- /WebRole1/WebRole1.dll.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/WebRole1.dll.Release.config -------------------------------------------------------------------------------- /WebRole1/WebRole1.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/WebRole1.dll.config -------------------------------------------------------------------------------- /WebRole1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/favicon.ico -------------------------------------------------------------------------------- /WebRole1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebRole1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WebRole1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebRole1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebRole1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/WebRole1/packages.config -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Client.1.0.9/content/ClientConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Client.1.0.9/content/ClientConfiguration.xml -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Client.1.0.9/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Client.1.0.9/tools/install.ps1 -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Core.1.0.9/lib/net45/Orleans.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Core.1.0.9/lib/net45/Orleans.XML -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Core.1.0.9/lib/net45/Orleans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Core.1.0.9/lib/net45/Orleans.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansAzureUtils.1.0.9/lib/net45/OrleansAzureUtils.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansAzureUtils.1.0.9/lib/net45/OrleansAzureUtils.XML -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansAzureUtils.1.0.9/lib/net45/OrleansAzureUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansAzureUtils.1.0.9/lib/net45/OrleansAzureUtils.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansHost.1.0.9/lib/net45/OrleansHost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansHost.1.0.9/lib/net45/OrleansHost.exe -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansHost.1.0.9/lib/net45/OrleansHost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansHost.1.0.9/lib/net45/OrleansHost.exe.config -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansProviders.1.0.9/lib/net45/OrleansProviders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansProviders.1.0.9/lib/net45/OrleansProviders.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansProviders.1.0.9/lib/net45/SQLServer/CreateOrleansTables_SqlServer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansProviders.1.0.9/lib/net45/SQLServer/CreateOrleansTables_SqlServer.sql -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.OrleansRuntime.1.0.9/lib/net45/OrleansRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.OrleansRuntime.1.0.9/lib/net45/OrleansRuntime.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Templates.Grains.1.0.9/tools/ClientGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Templates.Grains.1.0.9/tools/ClientGenerator.exe -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Templates.Grains.1.0.9/tools/ClientGenerator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Templates.Grains.1.0.9/tools/ClientGenerator.exe.config -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Templates.Grains.1.0.9/tools/Orleans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Templates.Grains.1.0.9/tools/Orleans.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Templates.Interfaces.1.0.9/tools/ClientGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Templates.Interfaces.1.0.9/tools/ClientGenerator.exe -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Templates.Interfaces.1.0.9/tools/ClientGenerator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Templates.Interfaces.1.0.9/tools/ClientGenerator.exe.config -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.Templates.Interfaces.1.0.9/tools/Orleans.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.Templates.Interfaces.1.0.9/tools/Orleans.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/content/ClientConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/content/ClientConfigurationForTesting.xml -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/content/OrleansConfigurationForTesting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/content/OrleansConfigurationForTesting.xml -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/lib/net45/OrleansTestingHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/lib/net45/OrleansTestingHost.dll -------------------------------------------------------------------------------- /packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/too4words/Call-Graph-Builder-DotNet/HEAD/packagesOrleansToReplace/Microsoft.Orleans.TestingHost.1.0.9/tools/install.ps1 --------------------------------------------------------------------------------