.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • How did we conclude that CcNamespace.dll was the ringleader of a group of DLLs that unloaded prematurely?

    calendar Jul 3, 2026 · devblogs.microsoft.com
    How did we conclude that <tt>CcNamespace.dll</tt> was the ringleader of a group of DLLs that unloaded prematurely?

    When I presented my study of a crash caused by a thread executing from an unloaded third-party DLL, someone asked how I concluded that CcNamespace.dll was the ringleader of the fa Link to article: https://devblogs.microsoft.com/oldnewthing/20260703-00/?p=112504


    Read More
  • Logging in .NET: The Complete Developer's Guide

    calendar Jul 3, 2026 · devleader.ca
    Logging in .NET: The Complete Developer's Guide

    Master logging in .NET with ILogger, structured logging, log levels, Serilog, and OpenTelemetry. Complete guide for .NET 9 and .NET 10 developers. Link to article: https://www.devleader.ca/2026/07/03/logging-in-net-the-complete-developers-guide


    Read More
  • In Conversation With the Golden Kodee Winners

    calendar Jul 3, 2026 · blog.jetbrains.com
    In Conversation With the Golden Kodee Winners

    KotlinConf 2026 marked a milestone for the Kotlin community: the very first Golden Kodee Community Awards. The awards recognize the individuals and communities whose passion and dedication help the Kotlin ecosystem thrive. From creating educational content and building engaging online communities to organizing events, …


    Read More
  • Enabling MLflow OpenAI Autolog on PySpark Workers

    calendar Jul 3, 2026 · devblogs.microsoft.com
    Enabling MLflow OpenAI Autolog on PySpark Workers

    Context In a recent engagement, the team built an LLM-based contract intelligence pipeline on Azure Databricks. The goal was to extract entitlements from a large corpus of inconsistently formatted service-contract PDFs — what is covered, on which equipment, and under which terms — so downstream systems can tell what is …


    Read More
  • Mock HttpClient C#: DelegatingHandler, Mock Handlers, and Integration Testing

    calendar Jul 2, 2026 · devleader.ca
    Mock HttpClient C#: DelegatingHandler, Mock Handlers, and Integration Testing

    Mock HttpClient C# in .NET 10: custom HttpMessageHandler stubs, DelegatingHandler interceptors, IHttpClientFactory wiring, and WebApplicationFactory tests. Link to article: https://www.devleader.ca/2026/07/02/mock-httpclient-c-delegatinghandler-mock-handlers-and-integration-testing


    Read More
  • What Is a NuGet Package? .nupkg Format and the NuGet Registry Explained

    calendar Jul 2, 2026 · devleader.ca
    What Is a NuGet Package? .nupkg Format and the NuGet Registry Explained

    Understand what a NuGet package is, how the .nupkg format works, how the NuGet registry operates, and how package restore works in .NET projects. Link to article: https://www.devleader.ca/2026/07/02/what-is-a-nuget-package-nupkg-format-and-the-nuget-registry-explained


    Read More
  • Pure Virtual C++ 2026 Talks Announced

    calendar Jul 2, 2026 · devblogs.microsoft.com
    Pure Virtual C++ 2026 Talks Announced

    The talks are set for Pure Virtual C++ 2026, our free, one-day virtual conference for the whole C++ community. We're excited to reveal the featured session lineup and the speakers bringing it to you. Ma Link to article: https://devblogs.microsoft.com/cppblog/pure-virtual-cpp-2026-talks-announced


    Read More
  • How Amazon Bedrock catches AI-generated phishing

    calendar Jul 2, 2026 · aws.amazon.com/blogs/machine-learning
    How Amazon Bedrock catches AI-generated phishing

    Social engineering through phishing remains one of the most common tactics for launching cyberattacks. AI-generated phishing email messages now pose a new challenge for security teams managing email systems, significantly raising the risk because of their advanced sophistication. Modern social engineers use generative …


    Read More
  • Best practices for multi-turn reinforcement learning in Amazon SageMaker AI

    calendar Jul 2, 2026 · aws.amazon.com/blogs/machine-learning
    Best practices for multi-turn reinforcement learning in Amazon SageMaker AI

    In this post, we share best practices for reliable multi-turn RL training. We cover how to build a training environment you can trust, set up an external evaluation, design a reward aligned with the end task, manage what changes once the agent runs for multiple turns, and monitor the metrics that tell you when to …


    Read More
  • Toolbox App 3.6: Smarter Storage Cleanup, Windows installation diagnostics, and More

    calendar Jul 2, 2026 · blog.jetbrains.com
    Toolbox App 3.6: Smarter Storage Cleanup, Windows installation diagnostics, and More

    Toolbox App 3.6 gives you better control over local storage and makes Windows installation failures easier to diagnose. Clean up removable Toolbox App data from Settings The Toolbox App now shows how much removable data it can safely clean up, providing a breakdown for the download cache, previous versions, temporary …


    Read More
  • AutoMapper 16.2.0 and MediatR 14.2.0 Released

    calendar Jul 2, 2026 · jimmybogard.com
    AutoMapper 16.2.0 and MediatR 14.2.0 Released

    Today we released the 16.2.0 version of AutoMapper and 14.2.0 version of MediatR:AutoMapper Release NotesMediatR Release NotesThis release is a bit more enterprise-focused, with extensions for setting the license keys via environment variables, fixing some threading issues around license key validation, and Link to …


    Read More
  • The case of the thread executing from an unloaded third-party DLL

    calendar Jul 2, 2026 · devblogs.microsoft.com
    The case of the thread executing from an unloaded third-party DLL

    The Explorer team was investigating a crash that was occuring at a relatively high rate and found that it took the form of a thread executing from an unloaded third-party DLL. 0:173> k RetAddr Call Site 00000000557c5820 <Unloaded_LibUtils_CloudNs_3.dll>+0x265fe 0000000000000008 <Unloaded_LibU Link to …


    Read More
  • Fundamentals of Azure DevOps with SQL projects

    calendar Jul 2, 2026 · devblogs.microsoft.com
    Fundamentals of Azure DevOps with SQL projects

    Building automated pipelines with your SQL database projects enables you to build a rich CI/CD ecosystem to ensure that your application is being deployed with good quality code and at high confidence of success. SQL Database Projects are compatible with just about every automation environment because fundamentally …


    Read More
  • IntelliJ IDEA 2026.1.4 Is Out!

    calendar Jul 2, 2026 · blog.jetbrains.com
    IntelliJ IDEA 2026.1.4 Is Out!

    IntelliJ IDEA 2026.1.4 is out with some useful fixes. You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are a Ubuntu user. You can also download it from our website. The latest update brings the following improvements: For a comprehensive overview of the fixes, see the …


    Read More
  • Visitor Pattern Real-World Example in C#: Complete Implementation

    calendar Jul 2, 2026 · devleader.ca
    Visitor Pattern Real-World Example in C#: Complete Implementation

    A visitor pattern real-world example in C# building a document export system with HTML, Markdown, and plain text visitors. Link to article: https://www.devleader.ca/2026/07/02/visitor-pattern-realworld-example-in-c-complete-implementation


    Read More
  • Big Thinkers: Grace Hopper – The Origins of Developer Productivity and Software Abstraction

    calendar Jul 2, 2026 · build5nines.com
    Big Thinkers: Grace Hopper – The Origins of Developer Productivity and Software Abstraction

    Modern cloud platforms hide staggering complexity behind APIs, YAML files, dashboards, CLIs, and developer portals. Infrastructure teams now spend enormous amounts of effort trying to… Link to article: https://build5nines.com/big-thinkers-grace-hopper-the-origins-of-developer-productivity-and-software-abstraction/


    Read More
  • HTTP/3 in .NET 10: Enabling QUIC with HttpClient and ASP.NET Core

    calendar Jul 1, 2026 · devleader.ca
    HTTP/3 in .NET 10: Enabling QUIC with HttpClient and ASP.NET Core

    A complete guide to HTTP/3 in .NET 10 -- enabling and using QUIC with HttpClient and ASP.NET Core, including version negotiation, TLS requirements, testing locally, and real-world performance implications. Link to article: https://www.devleader.ca/2026/07/01/http3-in-net-10-enabling-quic-with-httpclient-and-aspnet-core …


    Read More
  • The Complete Guide to Creating NuGet Packages in .NET

    calendar Jul 1, 2026 · devleader.ca
    The Complete Guide to Creating NuGet Packages in .NET

    Learn how to create, version, and publish NuGet packages in .NET. This complete guide covers dotnet pack, metadata, versioning, publishing, CI/CD, and more. Link to article: https://www.devleader.ca/2026/07/01/the-complete-guide-to-creating-nuget-packages-in-net


    Read More
  • Audit Frontier AI Agents with SQL MCP Server

    calendar Jul 1, 2026 · devblogs.microsoft.com
    Audit Frontier AI Agents with SQL MCP Server

    All modern AI solutions eventually need agents to query or mutate data in Microsoft SQL. Deciding how to do this safely, for example, how to handle NL2SQL, will be an important choice. Next come the twins: authentication and authorization. In this article, we discuss pass-through agentic authentic Link to article: …


    Read More
  • Run NVIDIA Nemotron and OpenAI GPT OSS models on Amazon Bedrock in AWS GovCloud (US)

    calendar Jul 1, 2026 · aws.amazon.com/blogs/machine-learning
    Run NVIDIA Nemotron and OpenAI GPT OSS models on Amazon Bedrock in AWS GovCloud (US)

    We're excited to introduce US-based frontier open-weight models in AWS GovCloud (US). With this release, Amazon Bedrock now supports OpenAI’s open-weight GPT OSS models (120B and 20B) and NVIDIA Nemotron (Nano 9B v2, Nano 12B v2, Nano 30B, Super 120B) models. In this post, we cover these models and their capabilities, …


    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • 4
    • 5
    • »
    • »»

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top