├── .bin └── srclib-csharp ├── .gitignore ├── .gitmodules ├── .travis.yml ├── 3rdparty ├── Microsoft.Dnx.Runtime.Abstractions │ └── 1.0.0-rc1-15838 │ │ ├── Microsoft.Dnx.Runtime.Abstractions.1.0.0-rc1-15838.nupkg │ │ ├── Microsoft.Dnx.Runtime.Abstractions.1.0.0-rc1-15838.nupkg.sha512 │ │ ├── Microsoft.Dnx.Runtime.Abstractions.nuspec │ │ └── lib │ │ ├── dnx451 │ │ ├── Microsoft.Dnx.Runtime.Abstractions.dll │ │ └── Microsoft.Dnx.Runtime.Abstractions.xml │ │ └── dnxcore50 │ │ ├── Microsoft.Dnx.Runtime.Abstractions.dll │ │ └── Microsoft.Dnx.Runtime.Abstractions.xml └── Microsoft.Framework.CommandLineUtils.Sources │ └── 1.0.0-rc1-15779 │ ├── Microsoft.Framework.CommandLineUtils.Sources.1.0.0-rc1-15779.nupkg │ ├── Microsoft.Framework.CommandLineUtils.Sources.1.0.0-rc1-15779.nupkg.sha512 │ ├── Microsoft.Framework.CommandLineUtils.Sources.nuspec │ ├── lib │ ├── dnx451 │ │ ├── Microsoft.Framework.CommandLineUtils.Sources.dll │ │ └── Microsoft.Framework.CommandLineUtils.Sources.xml │ └── dnxcore50 │ │ ├── Microsoft.Framework.CommandLineUtils.Sources.dll │ │ └── Microsoft.Framework.CommandLineUtils.Sources.xml │ └── shared │ ├── AnsiConsole.cs │ ├── CommandArgument.cs │ ├── CommandLineApplication.cs │ ├── CommandOption.cs │ ├── CommandOptionType.cs │ └── CommandParsingException.cs ├── LICENSE ├── Makefile ├── NuGet.Config ├── README.md ├── Srclib.Nuget.sln ├── Srclib.Nuget ├── ConsoleCommands │ ├── DepresolveConsoleCommand.cs │ ├── GraphConsoleCommand.cs │ ├── PackageVersions.cs │ └── ScanConsoleCommand.cs ├── Documentation │ └── DocProcessor.cs ├── Graph │ ├── GraphContext.cs │ ├── GraphRunner.cs │ ├── SymbolExtensions.cs │ └── SymbolNameCache.cs ├── LibraryUtils.cs ├── Models │ ├── DependencyInfo.cs │ ├── Output.cs │ ├── Resolution.cs │ ├── SourceUnit.cs │ └── Target.cs ├── Program.cs ├── RuntimeEnvironmentExtensions.cs ├── Srclib.Nuget.xproj ├── Srclib.Nuget.xproj.user ├── Utils.cs └── project.json ├── Srclibtoolchain └── testdata └── expected └── Proxy └── Test ├── NugetPackage.depresolve.json ├── NugetPackage.graph.json └── NugetPackage.unit.json /.bin/srclib-csharp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/.bin/srclib-csharp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/Microsoft.Dnx.Runtime.Abstractions.1.0.0-rc1-15838.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/Microsoft.Dnx.Runtime.Abstractions.1.0.0-rc1-15838.nupkg -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/Microsoft.Dnx.Runtime.Abstractions.1.0.0-rc1-15838.nupkg.sha512: -------------------------------------------------------------------------------- 1 | ttAofn7DI73KBu50QqPbB3hN/E1bZO+NNNZnpHkEmLP2dh5Lqm2isho3vdrm25Bv2S7RETrIPXcERMOfGCcaow== -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/Microsoft.Dnx.Runtime.Abstractions.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/Microsoft.Dnx.Runtime.Abstractions.nuspec -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.xml -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll -------------------------------------------------------------------------------- /3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Dnx.Runtime.Abstractions/1.0.0-rc1-15838/lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.xml -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/Microsoft.Framework.CommandLineUtils.Sources.1.0.0-rc1-15779.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/Microsoft.Framework.CommandLineUtils.Sources.1.0.0-rc1-15779.nupkg -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/Microsoft.Framework.CommandLineUtils.Sources.1.0.0-rc1-15779.nupkg.sha512: -------------------------------------------------------------------------------- 1 | rCtNsKlDIdK7Lbww0dIaDym2EfeEzM3zQcg4S1NzVZ4KRHvR9agmEs3yY01WRNYjUy/3/7GqCxoyVALwTIH38Q== -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/Microsoft.Framework.CommandLineUtils.Sources.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/Microsoft.Framework.CommandLineUtils.Sources.nuspec -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/AnsiConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/AnsiConsole.cs -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandArgument.cs -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandLineApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandLineApplication.cs -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandOption.cs -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandOptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandOptionType.cs -------------------------------------------------------------------------------- /3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/3rdparty/Microsoft.Framework.CommandLineUtils.Sources/1.0.0-rc1-15779/shared/CommandParsingException.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Makefile -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/README.md -------------------------------------------------------------------------------- /Srclib.Nuget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget.sln -------------------------------------------------------------------------------- /Srclib.Nuget/ConsoleCommands/DepresolveConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/ConsoleCommands/DepresolveConsoleCommand.cs -------------------------------------------------------------------------------- /Srclib.Nuget/ConsoleCommands/GraphConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/ConsoleCommands/GraphConsoleCommand.cs -------------------------------------------------------------------------------- /Srclib.Nuget/ConsoleCommands/PackageVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/ConsoleCommands/PackageVersions.cs -------------------------------------------------------------------------------- /Srclib.Nuget/ConsoleCommands/ScanConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/ConsoleCommands/ScanConsoleCommand.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Documentation/DocProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Documentation/DocProcessor.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Graph/GraphContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Graph/GraphContext.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Graph/GraphRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Graph/GraphRunner.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Graph/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Graph/SymbolExtensions.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Graph/SymbolNameCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Graph/SymbolNameCache.cs -------------------------------------------------------------------------------- /Srclib.Nuget/LibraryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/LibraryUtils.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Models/DependencyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Models/DependencyInfo.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Models/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Models/Output.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Models/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Models/Resolution.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Models/SourceUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Models/SourceUnit.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Models/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Models/Target.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Program.cs -------------------------------------------------------------------------------- /Srclib.Nuget/RuntimeEnvironmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/RuntimeEnvironmentExtensions.cs -------------------------------------------------------------------------------- /Srclib.Nuget/Srclib.Nuget.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Srclib.Nuget.xproj -------------------------------------------------------------------------------- /Srclib.Nuget/Srclib.Nuget.xproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Srclib.Nuget.xproj.user -------------------------------------------------------------------------------- /Srclib.Nuget/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/Utils.cs -------------------------------------------------------------------------------- /Srclib.Nuget/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclib.Nuget/project.json -------------------------------------------------------------------------------- /Srclibtoolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/Srclibtoolchain -------------------------------------------------------------------------------- /testdata/expected/Proxy/Test/NugetPackage.depresolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/testdata/expected/Proxy/Test/NugetPackage.depresolve.json -------------------------------------------------------------------------------- /testdata/expected/Proxy/Test/NugetPackage.graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/testdata/expected/Proxy/Test/NugetPackage.graph.json -------------------------------------------------------------------------------- /testdata/expected/Proxy/Test/NugetPackage.unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/srclib-csharp/HEAD/testdata/expected/Proxy/Test/NugetPackage.unit.json --------------------------------------------------------------------------------