Skip to content

philipwolfe/nbrowse

 
 

Repository files navigation

NBrowse: .NET assembly query utility

Build Status license

Overview

NBrowse is a command-line utility to browse and execute search queries in .NET compiled assemblies (both .NET Framework and .NET Standard). It exposes loaded assemblies through a standard set of traversable entities (e.g. "assembly", "project", "type", "method" and so on) and allows you to run C# statements to query anything you want to retrieve from them.

You can think of it as a stripped down NDepend equivalent with no graphical interface.

This example will search in assembly NBrowse.dll for every type that implements interface IPrinter and print them to standard output:

$ dotnet NBrowse.CLI.dll -c '
    /* Take all loaded assemblies */
    p => p.Assemblies
    /* Select declared types from each of them */
    .SelectMany(a => a.Types)
    /* Filter on types having an interface named "IPrinter" */
    .Where(t => t.Interfaces.Any(i => i.Name == "IPrinter"))' NBrowse.dll

Usage

Download latest release from GitHub or checkout code and build using your preferred .NET Core or .NET Framework SDK.

Once you have a NBrowse.CLI executable file, run it with -h command line argument to display help.

$ dotnet NBrowse.CLI -h

Licence

This project is open-source, released under MIT licence. See LICENSE.md file for details.

Author

Rémi Caput (github.com+nbrowse [at] mirari [dot] fr)

About

Playing with Roslyn's CSharpScript API to browse .NET assemblies

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.2%
  • Shell 0.8%