Tag

.NET

17 posts tagged with this.

  1. Official Blog
    · 1 min read

    Native AOT Deployment for ASP.NET Core in .NET 10

    Native AOT compilation in .NET 10 delivers smaller binaries and faster startup for ASP.NET Core services. This post covers the practical steps to enable it and the trade-offs developers encounter in real workloads.

  2. Official Blog
    · 1 min read

    .NET 10 and C# 13 Updates for May 2026

    The May 2026 .NET 10 release delivers measurable runtime gains and C# 13 language refinements that affect everyday code. This post summarizes the concrete changes and shows short examples of how they integrate into existing ASP.NET Core applications.

  3. Official Blog
    · 1 min read

    Native AOT for Smaller ASP.NET Core Deployments

    Native AOT compilation produces self-contained, trimmed binaries that start faster and consume less memory. This post shows how to adopt it in current ASP.NET Core projects and the concrete changes required.

  4. Official Blog
    · 1 min read

    .NET 10 Delivers Major Runtime and C# Gains

    Microsoft shipped .NET 10 in November 2025 with substantial performance work in the runtime and several targeted C# 14 language additions. The release improves ahead-of-time compilation, reduces memory pressure in long-running services, and adds practical syntax for common patterns.

  5. Official Blog
    · 1 min read

    Mitigating CVE-2023-38180 in ASP.NET Core Kestrel

    ASP.NET Core sites face denial-of-service risk from CVE-2023-38180 when Kestrel processes crafted HTTP/2 requests. Apply patches and set Kestrel limits to keep production services responsive.

  6. Official Blog
    · 3 min read

    The .NET Ecosystem in 2026: What’s New in .NET 10 and C# 14 (with a Look at .NET 11 Preview)

    Discover what’s new in .NET 10 and C# 14 — faster Native AOT, improved Minimal APIs, powerful new language features, and a preview of .NET 11. A must-read guide for every .NET developer in 2026.

  7. Official Blog
    · 3 min read

    Practical Query Optimization for SQL Server in .NET Applications

    In production .NET applications, slow SQL queries often become the primary bottleneck. This article explores practical techniques including execution plan analysis, strategic indexing, and T-SQL best practices to significantly improve your SQL Server database performance.

  8. Official Blog
    · 4 min read

    Unlocking Faster Endpoints with ASP.NET Core Minimal APIs

    Minimal APIs provide a high-performance alternative to full MVC controllers in ASP.NET Core by minimizing overhead and allocations. This guide covers implementation details, performance benchmarks, advanced patterns, and deployment techniques to help you build faster applications on the ASPnix platf

  9. Official Blog
    · 2 min read

    Mitigating CVE-2023-44487: HTTP/2 Rapid Reset in .NET Apps

    CVE-2023-44487 exposes HTTP/2 servers to a high-amplification denial of service attack known as Rapid Reset. Learn exactly how it impacts ASP.NET Core applications on Kestrel and IIS, plus the updates, Kestrel configuration, and monitoring practices needed to keep your production sites online.

  10. Official Blog
    · 4 min read

    Cloud-Native Advances Reshaping .NET Application Deployment

    Recent Kubernetes autoscaling and security updates, C# infrastructure-as-code with Pulumi, stable OpenTelemetry support in .NET 8, and practical edge computing options reduce deployment failures, accelerate incident resolution, and enable demand-driven scaling for ASP.NET Core apps on Windows Server

  11. WHMCS Modules
    · 3 min read

    Where Do I Sign Up for Pushover?

    Sign up for a Pushover account at https://pushover.net/login to access their free API for sending push notifications, subject to usage limits. This guide provides context on account setup, a C# example for .NET integration, best practices for reliable alerts, and steps to avoid common pitfalls when

  12. WHMCS Modules
    · 3 min read

    Is the Pushover API Free?

    Yes, the Pushover API is free to use within defined usage limits. This guide explains the free tier, provides a complete C# example for sending notifications from .NET applications, outlines best practices, and directs you to the official FAQ for current rate limits. Essential reading for developers

  13. WHMCS Modules
    · 3 min read

    Are Refunds Supported in the Coinbase Payment Gateway Module?

    As of build 1.3.0, the Coinbase Payment Gateway module supports refunds through the Coinbase API for ASP.NET e-commerce sites. Only full refunds matching the original transaction amount are allowed; partial refunds are not supported. This guide covers prerequisites, step-by-step processing, technica

  14. Knowledge BaseWeb Hosting
    · 2 min read

    What versions of .NET Framework or .NET Core are available?

    Our Windows shared servers support .NET Framework from 2.0 to 4.8 and .NET Core/.NET from 1.0.16 through 10.0 (Preview 1). This guide lists every available runtime so you can match your application's target framework, avoid compatibility errors, and leverage the best performance and security updates

  15. Official Blog
    · 2 min read

    Optimizing ASP.NET Core Performance with Minimal APIs and Native AOT

    Learn how to leverage Minimal APIs and Native AOT in ASP.NET Core to achieve faster startup times, smaller binaries, and better scalability. Follow our step-by-step guide with code examples to implement these features in your applications.