CyberdyneDevelopment.DeveloperTools.Navigation 0.1.0-preview.5

This is a prerelease version of CyberdyneDevelopment.DeveloperTools.Navigation.
dotnet add package CyberdyneDevelopment.DeveloperTools.Navigation --version 0.1.0-preview.5
                    
NuGet\Install-Package CyberdyneDevelopment.DeveloperTools.Navigation -Version 0.1.0-preview.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CyberdyneDevelopment.DeveloperTools.Navigation" Version="0.1.0-preview.5">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CyberdyneDevelopment.DeveloperTools.Navigation" Version="0.1.0-preview.5" />
                    
Directory.Packages.props
<PackageReference Include="CyberdyneDevelopment.DeveloperTools.Navigation">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CyberdyneDevelopment.DeveloperTools.Navigation --version 0.1.0-preview.5
                    
#r "nuget: CyberdyneDevelopment.DeveloperTools.Navigation, 0.1.0-preview.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CyberdyneDevelopment.DeveloperTools.Navigation@0.1.0-preview.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CyberdyneDevelopment.DeveloperTools.Navigation&version=0.1.0-preview.5&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CyberdyneDevelopment.DeveloperTools.Navigation&version=0.1.0-preview.5&prerelease
                    
Install as a Cake Tool

Mc3Po.Tools.Navigation

Code navigation tools for the FractalDataWorks development tools framework.

Overview

This package provides Roslyn-based code navigation tools for finding definitions, references, and type hierarchies.

Tools

Tool Description
FindBaseTypes Find base classes and interfaces
FindDeclaration Find symbol declaration
FindDefinition Go to definition
FindDerivedTypes Find derived types
FindMembers List type members
FindOverrides Find method overrides
GetContainingType Get containing type for a member
GetNamespace Get namespace for a type

Usage

Find Derived Types

var tool = ToolTypes.ByName("FindDerivedTypes");
var input = new ToolInput(new Dictionary<string, object>
{
    ["typeName"] = "ServiceBase",
    ["includeIndirect"] = true
});

var result = await tool.Execute(input);
if (result.IsSuccess)
{
    var derivedTypes = result.Value!.Data["derivedTypes"];
    // Returns all types that inherit from ServiceBase
}

Find Definition

var tool = ToolTypes.ByName("FindDefinition");
var input = new ToolInput(new Dictionary<string, object>
{
    ["filePath"] = "/path/to/file.cs",
    ["line"] = 42,
    ["column"] = 15
});

var result = await tool.Execute(input);
// Returns file path and location of symbol definition

Dependencies

  • Mc3Po.Tools.Abstractions - Tool framework
  • FractalDataWorks.Workspace.Roslyn - Roslyn workspace access
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CyberdyneDevelopment.DeveloperTools.Navigation:

Package Downloads
CyberdyneDevelopment.DeveloperTools.McpServer

Development tools and utilities for the FractalDataWorks ecosystem. Build:

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-preview.5 52 1/7/2026