CyberdyneDevelopment.DeveloperTools.Conventions 0.1.0-preview.5

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

Mc3Po.Tools.Conventions

FractalDataWorks framework convention validation and discovery tools.

Overview

This package provides tools for working with FractalDataWorks-specific patterns including TypeCollections, ServiceTypes, Result handling, and MessageLogging.

Tools

Tool Description
AnalyzeExceptionUsage Find exception throws that should use Result pattern
FindMessageLogging Find MessageLogging attribute usage
FindResultUsages Find IGenericResult usage patterns
FindServiceTypes Discover ServiceType implementations
FindTypeCollections Discover TypeCollection definitions
FindTypeOptions Discover TypeOption implementations
ValidateResultHandling Validate proper Result pattern usage
ValidateTypeCollection Validate TypeCollection structure and conventions

Usage

Find TypeCollections

var tool = ToolTypes.ByName("FindTypeCollections");
var input = new ToolInput(new Dictionary<string, object>
{
    ["projectPath"] = "/path/to/project.csproj"
});

var result = await tool.Execute(input);
if (result.IsSuccess)
{
    var collections = result.Value!.Data["typeCollections"];
    // Returns list of TypeCollection definitions with their TypeOptions
}

Validate Result Handling

var tool = ToolTypes.ByName("ValidateResultHandling");
var input = new ToolInput(new Dictionary<string, object>
{
    ["filePath"] = "/path/to/Service.cs"
});

var result = await tool.Execute(input);
// Reports unchecked Result returns, missing error handling, etc.

Find Exception Usage

var tool = ToolTypes.ByName("AnalyzeExceptionUsage");
var input = new ToolInput(new Dictionary<string, object>
{
    ["projectPath"] = "/path/to/project.csproj"
});

var result = await tool.Execute(input);
// Reports throw statements that could be replaced with Result 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.Conventions:

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