Use the image generation tool in Foundry Agent Service | Microsoft Learn
#foundry #ai #agents #csharp #java #python #restapi #typescript #dotnet #microsoftfoundry
Use the image generation tool in Foundry Agent Service | Microsoft Learn
#foundry #ai #agents #csharp #java #python #restapi #typescript #dotnet #microsoftfoundry
Extend your coding agent with .NET Skills | by Tim Heuer
https://devblogs.microsoft.com/dotnet/extend-your-coding-agent-with-dotnet-skills/?hide_banner=true
#dotnet #ai #agents #skills #csharp #githubcopilot #softwaredev
Build a real-world example with Microsoft Agent Framework, Microsoft Foundry, MCP and Aspire | by Justin Yoo
#agentframework #mcp #ai #agents #foundry #aspire #cloudnative #microsoftfoundry #dotnet

Building AI agents is getting easier. Deploying them as part of a real application, with multiple services, persistent state, and production infrastructure, is where things get complicated. Developers from the .NET community have requested whether a real-world example that shows running on local machine as well as on the cloud in a cloud-native way. We’ve […]
Dew Drop – March 10, 2026 (#4621)
https://www.alvinashcraft.com/2026/03/10/dew-drop-march-10-2026-4621/
#dotnet #webdev #ai #vscode #windowsdev #csharp #mobiledev #visualstudio #githubcopilot #cloud #dewdrop
🗂️ New: Modernizing .NET – Part 15
JSON fails with circular objects. Protobuf-net can’t fix recursive graphs.
Here’s a custom ASP.NET Core Session Store that can.
Read → https://medium.com/@michael.kopt/%EF%B8%8F-custom-session-store-for-complex-objects-in-asp-net-core-1349b680ce12
#DotNet #DotNetCore #DotNet8 #DotNet9 #DotNet10 #ASPNet #ASPNetCore #CSharp #Middleware #SessionState
Upgrading from .NET 9 to .NET 10 is more than a routine update — it is a strategic move toward better performance, stronger security, and cloud-ready scalability.
Explore the complete migration guide here: https://prishusoft.com/blog/upgrade-dotnet-9-to-dotnet-10-guide
If you are planning a framework upgrade or optimizing enterprise systems, Prishusoft provides end-to-end .NET development, migration support, cloud integration, and scalable web solutions tailored to your business goals.
⚡️ What does the free Visual Studio Dev Essentials subscription do?
via @dotnet : Extend your coding agent with .NET Skills
https://ift.tt/B6GLaeX
#dotnetskills #codingagents #netdevelopment #agentskills #copilotCLI #vscode #dotnetrocks #aiintegration #devblog #dotnet #pluginsmarketplace #codingproductivity #contextualAI #agentp…

Some developers still think async/await makes code faster. I thought the same when I started with .NET. Then one day, our API started slowing down under load. Not because of the CPU. Not because of the database. Because we were blocking threads everywhere. .Result .Wait() Sync database calls Sync HTTP calls Everything worked perfectly… until traffic increased. What many developers miss is this: Async doesn’t make one request faster. A request that takes 400ms with sync code will still take ~400ms with async. The real difference is what happens to the ThreadPool. With synchronous code: Thread → waits for HTTP → waits for DB → waits for I/O The thread is blocked the whole time. With async code: Thread → starts I/O → returns to ThreadPool OS notifies completion → continuation resumes. That single difference is what allows ASP .NET Core to handle thousands more concurrent requests. The real killer I keep seeing in production codebases is this: Sync-over-async var result = httpClient.SendAsync(...).Result; This blocks the thread again and under load it can lead to ThreadPool starvation. And once that happens, your API starts feeling “mysteriously slow”. No CPU spikes. No database bottlenecks. Just no threads left to process requests. I made this visual to explain what actually happens inside ASP .NET Core. Curious: Have you ever debugged a production issue that turned out to be sync-over-async? __ 📌 Don't miss the next newsletter issue, 20,000 engineers will read it, join them: thecodeman.net 📌 Join our Free Closed .NET Hub (1.1k members) and get access to content nobody publicly has: https://lnkd.in/gu_5HiMD ♻️ Repost to others. 📂 You can save this post for later, and you should do it. ➕ Follow me ( Stefan Đokić ) to learn .NET and Architecture every day. | 32 comments on LinkedIn
I'm not one for reading but...
Read more here:
https://www.devleader.ca/2024/01/15/the-best-c-books-for-beginner-developers-top-6-picks/