CyberdyneDevelopment.DeveloperTools.Search 0.1.0-preview.5

This is a prerelease version of CyberdyneDevelopment.DeveloperTools.Search.
dotnet add package CyberdyneDevelopment.DeveloperTools.Search --version 0.1.0-preview.5
                    
NuGet\Install-Package CyberdyneDevelopment.DeveloperTools.Search -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.Search" 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.Search" Version="0.1.0-preview.5" />
                    
Directory.Packages.props
<PackageReference Include="CyberdyneDevelopment.DeveloperTools.Search">
  <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.Search --version 0.1.0-preview.5
                    
#r "nuget: CyberdyneDevelopment.DeveloperTools.Search, 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.Search@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.Search&version=0.1.0-preview.5&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=CyberdyneDevelopment.DeveloperTools.Search&version=0.1.0-preview.5&prerelease
                    
Install as a Cake Tool

Mc3Po.Tools.Search

Code search tools for the FractalDataWorks development tools framework.

Overview

This package provides Roslyn-based semantic search tools for finding symbols, references, and patterns.

Tools

Tool Description
FindReferences Find all references to a symbol
FindSymbols Search for symbols by name/pattern
FindUsages Find usages of a type or member
SearchText Text search across documents

Usage

Find References

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

var result = await tool.Execute(input);
if (result.IsSuccess)
{
    var references = result.Value!.Data["references"];
    // Returns list of locations where symbol is used
}

Find Symbols

var tool = ToolTypes.ByName("FindSymbols");
var input = new ToolInput(new Dictionary<string, object>
{
    ["pattern"] = "Service",
    ["kind"] = "class",
    ["includePrivate"] = false
});

var result = await tool.Execute(input);
// Returns all classes matching pattern

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.Search:

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 47 1/7/2026