Skip to main content
Archives & Logs

Journal

Solutions Architect specializing in Azure, AI, and enterprise cloud-native development. Writing about architecture, AI agents, and building things that scale.


Simplify Your Workflow: How to Build Custom Commands with the .NET CLI
Deep Dive.NET
Jan 14, 2025 · 11 min read

Simplify Your Workflow: How to Build Custom Commands with the .NET CLI

Build custom .NET CLI tools that turn repetitive, multi-step tasks into a single command. This step-by-step guide shows how to build, package, and share command-line utilities for Microsoft Graph and generic HTTP requests, with practical examples for first-time CLI developers.




Best Practices for Creating and Using DTOs in the API
Deep Dive.NET
Dec 1, 2024 · 6 min read

Best Practices for Creating and Using DTOs in the API

Learn essential best practices for designing and implementing DTOs (Data Transfer Objects) in Clean Architecture. This guide covers how to create purpose-specific DTOs, implement effective mapping strategies, and improve API performance and maintainability.


Dependency Injection Setup Across Layers
Deep Dive.NET
Dec 1, 2024 · 6 min read

Dependency Injection Setup Across Layers

Learn how to properly configure Dependency Injection in Clean Architecture across multiple layers. This guide demonstrates how to register services, repositories, and utilities while maintaining separation of concerns for more maintainable and testable .NET applications.