Kiota Client in .NET: Concepts and Practical Example
Posted: November 3, 2025
Kiota is an open-source project from Microsoft that generates strongly-typed API clients from OpenAPI specifications. It enables developers…
Posted: November 3, 2025
Kiota is an open-source project from Microsoft that generates strongly-typed API clients from OpenAPI specifications. It enables developers…
Posted: September 19, 2025
When I tried building some code in the Visual Studio 2026 Insiders build, something strange happened: perfectly valid code in VS 2022…
Posted: September 11, 2025
The Problem That Every Developer Knows Too Well Picture this: You're working on a .NET API with comprehensive test coverage. Sounds great…
Posted: September 9, 2025
In Part 1, you built a simple MCP server in .NET and explored it with MCP Inspector. In Part 2, you saw how LLMs can interact with MCP…
Posted: September 3, 2025
Brief (read me first) We’ll build a tiny local runner first so you can experience how MCP tools are discovered and executed. Once that…
Posted: September 1, 2025
The AI ecosystem is evolving rapidly. Large Language Models (LLMs) are no longer just text predictors—they can reason, analyze, and even…
Posted: March 19, 2025
Git Checkout Commit & Git Restore Branch When working with Git, you might need to restore files/folders from a branch or a commit. Here’s…
Posted: March 18, 2025
🚀 Deploying Bicep Templates from Azure Container Registry (ACR) Bicep is an Infrastructure-as-Code (IaC) language that simplifies Azure…
Posted: March 18, 2025
Attributes in Action Filters Action filters in ASP.NET Core allow you to execute custom logic before or after an action method runs. The…
Posted: March 3, 2025
What’s This Warning? Git warns: This happens because Linux/macOS use LF, while Windows uses CRLF for line endings. What Does This Mean? Thi…