OpenAI for .NET Developers Articles, Tutorials & News
OpenAI for .NET Developers articles, tutorials, and news from the DotNetNews archive.
510 articles Updated Page 9 of 21
OpenAI for .NET Developers articles, tutorials, and news from the DotNetNews archive.
OpenAI for .NET Developers articles
Page 9 of 21
Newest first
-
Building a Agent with Microsoft Agent Framework and Multiple AI Service Providers
medium.com Issue #459
In this article, we will build a simple Weather Prediction Agent using the Microsoft Agent Framework with support for multiple AI…
-
514: Running Local LLMs in VS Code
mergeconflict.fm Issue #457
In this episode James and Frank dive into running AI coding models locally versus in the cloud—BYOK/Open Router, VS Code’s chat/agent harness, model runners (Olama, vLLM), and the practicality of 27B ...
-
What's new in Microsoft Foundry | April 2026
devblogs.microsoft.com Issue #457
TL;DR Foundry Local (generally available, GA): Local model inference is production-ready on Windows, macOS on Apple Silicon, and Linux x64. GPT-5.5: The latest GPT-5 family model is available in Micro...
-
Prompt Engineering in C#: System Messages, Few-Shot Examples & Structured Output
medium.com Issue #456
The Problem
-
Durable Workflows in the Microsoft Agent Framework
devblogs.microsoft.com Issue #456
Build durable AI agent workflows with the Microsoft Agent Framework. Start with in-process console apps, add durability with the Durable Task runtime, scale with parallel AI agents, and host on Azure ...
-
MCP Magic: Building Tool-Enabled AI Agents with C#
visualstudiomagazine.com Issue #455
Rockford Lhotka previews his Visual Studio Live! San Diego session, "MCP Magic," and explains why the Model Context Protocol is becoming a key building block for AI agents. In this Q&A, ...
-
MCP — Model Context Protocol The Future of AI Tool Integration in .NET
medium.com Issue #453
“The day I replaced 400 lines of custom plugin glue code with a 40-line MCP server and watched Claude, GPT-4o, and our internal Phi-4…
-
513: Agents Over Chat: The Future of Developer Workflows
mergeconflict.fm Issue #453
James and Frank explore the future of developer workflows powered by AI agents, revealing how developers are shifting from coders to testers and product strategists. They dive into new research-planni...
-
Prompt Engineering for Claude Code - The .NET Developer's Guide
codewithmukesh.com Issue #453
Write effective Claude Code prompts for .NET 10 projects. The 4-layer instruction hierarchy, 10 Bad vs Better patterns, and a decision matrix from 6 months of daily use.
-
Zero To First Agent (Azure OpenAI)
news.google.com Issue #450
Zero To First Agent (Azure OpenAI) - AI In C# (Microsoft Agent Framework) (X3DYrdlcLf)
-
The Limit of Software Brain
poppastring.com Issue #450
Software brain, AI backlash, databases, and automation by Nilay Patel on Decoder: I've been calling it software brain, and it's a particular way of seeing the world that fits everything into algorithm...
-
Agentic AI Tools Are Orchestrators, Not Magic
pietschsoft.com Issue #450
The LLM is not doing everything. It is the last 5% of a much larger system.
-
Governing MCP tool calls in .NET with the Agent Governance Toolkit
devblogs.microsoft.com Issue #450
AI agents are connecting to real tools — reading files, calling APIs, querying databases — through the Model Context Protocol (MCP). The Agent Governance Toolkit (AGT) provides a governance layer for ...
-
Securing the AI You’re Building: What the OWASP GenAI Data Security Guide Means for Developers Who…
pub.towardsai.net Issue #443
Most AI security articles are written by security professionals explaining risks to developers. Continue reading on Towards AI »
-
Inside The Agent Loop with Pierce Boggan
youtube.com Issue #443
LangChain.js for Beginners: A Free Course to Build Agentic AI Apps with JavaScript
-
AI in .NET: Why Most Implementations Stall and How to Build Systems That Actually Scale
aindotnet.medium.com Issue #443
AI adoption is growing fast but real impact still feels slow.
-
AI Security & Safety Protecting Your .NET AI Apps in 2026
medium.com Issue #443
“In 2025, a Fortune 500 company’s internal AI assistant was tricked — via a carefully crafted PDF a user uploaded — into revealing the…
-
CodeAct in Agent Framework: Faster Agents with Fewer Model Turns
devblogs.microsoft.com Issue #442
Modern AI agents often aren't bottlenecked by model quality, they are bottlenecked by orchestration overhead. When an agent chains together many small tool calls, each step typically requires a new mo...
-
My Claude Code Workflow
blog.lhotka.net Issue #442
I’ve been through a lot of workflow tooling on top of Claude Code over the past few months. They imposed structure — ideate, plan, implement, test, PR — and that structure was genuinely helpful when C...
-
PostgreSQL Like a Pro: Build mission-critical apps at any scale with Azure HorizonDB
youtube.com Issue #439
Choosing the Right Azure Hosting Model for AI Agents: A Deep Dive into Foundry Hosted Agents
-
Optimizing AI Agents with Progressive Disclosure
ardalis.com Issue #439
AI coding agents are only as good as the information you put in front of them. Every byte of context you load into an agent’s context window is space that could have been used for the code, conversati...
-
Running AI agents with customized templates using docker sandbox
andrewlock.net Issue #439
In this post I describe how to create custom templates for Docker Sandboxes, so that your sandboxes start with additional tools immediately available
-
Using Microsoft Agent Framework with Foundry managed memory
youtube.com Issue #437
Lewis Liu and Amy Boyd walk through how memory is natively integrated with Microsoft Agent Framework and LangGraph, enabling agents to persist user preferences, conversation context, and task outcomes...
-
Running Local AI with LlamaSharp in .NET: A Developer's Guide
c-sharpcorner.com Issue #437
Run powerful AI models locally in .NET with LlamaSharp! This guide covers setup, model selection (Llama 3, Phi-4), GPU acceleration, and integration with Semantic Kernel.
-
C# 15 Union Types: Finally Solving a Long-Standing Problem (With Example)
medium.com Issue #436
A few months ago, I ran into a very common problem while writing C# code. Continue reading on GoPenAI »