.NET Announcements and Updates from Microsoft Build 2024

.NET Team

At Microsoft Build 2024, we’re thrilled to unveil a new set of features and tools designed to make .NET development faster and easier.

Explore the .NET sessions at Microsoft Build 2024 to see the new features in action, or try them yourself by downloading .NET 9 Preview 4 today.

Overview diagram of .NET and it's frameworks, tools, and ecosystem

Here’s a look at our updates & announcements:

  • Artificial Intelligence: End-to-end scenarios for building AI-enabled applications, embracing the AI ecosystem, and deep integration with cloud services.
  • .NET Aspire: for building cloud-native distributed applications, releasing today.
  • C# 13: Improvements to much loved C# features to make them even better for you.
  • Performance: Reducing memory and execution time with critical benchmarks.
  • Enhancements to .NET libraries and frameworks including ASP.NET Core, Blazor, .NET MAUI, and more.

Let’s start with how we are improving AI development for developers with .NET.

.NET and Artificial Intelligence

.NET provides you with tools to create powerful applications with AI. You can use the semantic kernel to orchestrate AI plugins, allowing you to seamlessly integrate AI functionality into your applications. You can use state-of-the-art libraries like OpenAI, Qdrant, and Milvus to enhance the functionality of your applications. You can also deploy your applications to the cloud with .NET Aspire, ensuring optimal performance and scalability. Let’s take a look at these in more depth.

An overview of AI features for learning, building, ecosystem, deploying, and monitoring

AI Fundamentals

We’re introducing a new Tensor<T> type. Tensors are fundamental components of numerous mathematical models, including deep learning algorithms. They are multidimensional arrays that hold weights, biases, and intermediate calculations within neural networks. This allows for effective data handling and information flow for learning and prediction purposes. Whether it's image recognition, language comprehension, or trend forecasting, tensors play a crucial role in all facets of AI. Additionally, they make it easier to share data between libraries like ONNX Runtime, TorchSharp, or ML.NET, creating your own mathematical libraries, or developing applications using AI models. Performance is key and we achieve extra efficiencies by building on TensorPrimitives, which utilize SIMD instructions to optimize throughput.

We are excited to see you use Tensor<T>, please give Tensor<T> a try and give us feedback!

Get started building AI apps quickly

The world of AI is moving fast, and we are making sure that developers can get started quickly with minimal changes to their code. Take our new AI quick-start samples for a spin to see how you can start using LLM frameworks like Semantic Kernel to quickly tap into the AI ecosystem. Semantic Kernel allows developers to leverage various models, connect to vector stores, and simplify their prompting process with templates.

In addition to our samples, we’ve been developing Smart Components, prebuilt controls with end-to-end AI features designed specifically for Blazor and MVC / Razor. These components can drop into your existing apps in minutes to infuse them with AI capabilities. With Smart Components, teams can save significant development time and avoid the need for extensive UX design or in-depth research into machine learning and prompt engineering. Currently, we have three Smart Components that you can integrate including: SmartPasteButton, SmartTextArea, and SmartComboBox. The following is an example of adding a SmartPasteButton that takes copied texted from a clipboard and automatically fills in InputText controls using AI:

@page "/"
@using SmartComponents

<form>
    <p>Name: <InputText @bind-Value="@name" /></p>
    <p>Address line 1: <InputText @bind-Value="@addr1" /></p>
    <p>City: <InputText @bind-Value="@city" /></p>
    <p>Zip/postal code: <InputText @bind-Value="@zip" /></p>

    <button type="submit">Submit</button>
    <SmartPasteButton DefaultIcon />
</form>

@code {
    string? name, addr1, city, zip;
}

Here’s how you can use a Smart Component to intelligently paste data from the clipboard directly into a form.

Animated graphic showing copying and pasting an address with AI auto fill

Expanding the .NET AI ecosystem

We have collaborated with numerous partners, at Microsoft and across the industry, to enable developers to tap into the AI ecosystem. One of our most exciting collaborations this year has been with OpenAI. We partnered with them to deliver an official .NET library, which is set to be released later this month. This collaboration and new SDK ensures that .NET developers have a delightful experience and will have parity with other programming language libraries that you may be familiar with. It also provides support for the latest OpenAI features and models, such as GPT4o and Assistants v2, and a unified experience across OpenAI and Azure OpenAI. Please join our OpenAI SDK for .NET Advisors in order to influence the shape of this SDK.

Our partnerships extend beyond this. Last year, we announced official C# clients with Qdrant and Milivus. Our collaborative efforts continue as we work with partners like Weavite to offer developers a variety of .NET vector database options. Finally, we’ve been working with teams at Microsoft including Semantic Kernel, Azure SQL, and Azure AI Search to ensure that our developers can have seamless native experience with their AI capabilities.

Future Investments: Monitoring and Observing your LLM Apps.

Large language model (LLM) applications require reliable, performant, and high-quality outcomes. Developers need to measure and track the results and behaviors of their LLM applications in both development and production environments and identify and resolve any issues.

Our team is working on how developers can use .NET Aspire, Semantic Kernel, and Azure to monitor their AI applications. These features are in preview, and we welcome your feedback. The following images demonstrate how you can use .NET Aspire with minimal code to collect detailed metrics and tracing data from Semantic Kernel, such as the model, token count, prompt, and generated response, following the OpenTelemetry standard convention for LLMs that’s currently being designed.

Developers can view these traces in development with .NET Aspire and in production with various Azure Monitor tools like App Insights. The following is an example of enabling tracing in both .NET Aspire and App Insights.

Aspire and app insights showing ai telemetry

We have made collecting this telemetry with Semantic Kernel a breeze with just a few lines of code:

// Enable the draft OpenTelemetry LLM data to be collected
AppContext.SetSwitch("Microsoft.SemanticKernel.Experimental.GenAI.EnableOTelDiagnosticsSensitive", true);

// Export the data
builder.Services.AddOpenTelemetry()
   .WithMetrics(m => m.AddMeter("Microsoft.SemanticKernel*"))
   .WithTracing(t => t.AddSource("Microsoft.SemanticKernel*"));

We are invested in making .NET a spectacular platform for building and integrating AI into your apps and working seamlessly with libraries in the AI ecosystem and with amazing frameworks including ASP.NET Core and .NET Aspire for building cloud-native apps. Next, let’s go a bit deeper on how we are investing in building cloud-native apps with .NET.

Cloud-native Development with .NET

Using .NET, you can build secure, efficient, resilient, observable, and configurable cloud-native applications. We have been enhancing cloud-native app development with reach release by delivering:

  • Chiseled containers: Reducing the size of .NET container images
  • NativeAOT & Trimming: Reducing app size while improving app startup time
  • New features and libraries for ASP.NET Core to streamline cloud-native scenarios.
  • Performance: Squeezing every drop of perf in all frameworks and libraries.

We are continuing our journey to improve the developer’s experience for building these apps with the launch of .NET Aspire and continued investment for cloud-native scenarios with .NET 9. Let’s start with .NET Aspire and how you can leverage it today in your .NET applications.

.NET Aspire: Simplifying cloud-native development

.NET Aspire is a new stack that streamlines development of .NET cloud-native apps and services. We are pleased to announce that .NET Aspire is now generally available.

Get started with .NET Aspire today with the latest version Visual Studio 2022 (17.10), the .NET CLI, or Visual Studio Code with C# Dev Kit. .NET Aspire brings together tools, templates, and NuGet packages that help you build observable, distributed, production-ready applications in .NET more easily. Whether you’re building a new application, adding cloud-native capabilities to an existing one, or are already deploying .NET apps to production in the cloud today, .NET Aspire can help you get there faster.

.NET Aspire enables building distributed applications, including project orchestration, components to integrate with prominent services and platforms, service discovery, service defaults, and so much more.

A main highlight of .NET Aspire is the dashboard, which provides a consolidated view of your apps resources, complete with logs, distributed traces, and metrics. Whether running during the local developer inner-loop or deployed in the cloud, the dashboard provides a real-time, developer-centric view of what your application is doing right now.

The following image shows a trace from a front-end web app all into multiple dependent backend services, caches, and databases.

Aspire dashboard showing traces

Developers need to deploy distributed applications throughout their development process for quick testing and need to be able to easily deploy into production when it is time. .NET Aspire is there to help with powerful features for taking your applications to the cloud, with support for provisioning and connecting to cloud services in Azure and AWS during development and deploying applications to Azure Container Apps using the Azure Developer CLI, or Kubernetes with Aspirate.

Aspire overview showing get started, building, and deploying

.NET is Linux Native

.NET is cross-platform. Our mission is to ensure that .NET runs spectacularly everywhere developers build applications 🚀. We have invested a lot into improving developer and production workflows for apps running on Linux.

We work with Canonical, Red Hat, and other maintainers to ensure that .NET packages are available to install from official feeds and updated for security patches on the same schedule as Microsoft.

For example, .NET 8 is available in Ubuntu 24.04, installable with the following commands.

sudo apt update
sudo apt install dotnet8

Containers are the most popular way to deploy cloud-native apps. The smaller the container, the quicker that new nodes can be provisioned. Smaller images are often more secure, too. Chiseled containers are the solution to this, and they are now generally available for Ubuntu 24.04 for .NET 8 and .NET 9. Highly requested globalization-friendly images are now available that include icu and tzdata libraries.

Let’s look at the impact chiseled images have on an ASP.NET Core web app. The Ubuntu 24.04 chiseled image is around 45% smaller than using regular Ubuntu. The only change was using a different base image.

Graph showing reduction in size by 46%

Now, let’s get into some new .NET 9 features and enhancements that you can try today that are focused on optimizing cloud-native apps.

Reducing Memory Usage

Automatic memory management has always been a key feature of .NET with world class garbage collection that is optimized for multiple scenarios. When it comes to cloud-native app development we are taking things to the next level with .NET 9 by introducing a new server garbage collector (GC) mode. This new mode dramatically reduces memory usage, which can lower costs, and at the same time delivers the same excellent performance that .NET is known for.

What does this mean for cloud-native apps? Imagine you had a Kubernetes cluster with two nodes. This new feature will automatically stay within those two nodes longer by adaptively responding to traffic to the scale of requests.

Let’s look at an example of the new server GC mode in action. The chart below shows the Fortunes TechEmpower benchmark app running 1,000 requests per second (RPS) in a container configured with 4 CPU cores. The existing server GC mode is in blue and the new server GC mode is in black. The new mode is using less than a third of the memory 🤯!

Graph showing reduction of memory usage

Running this example at 10,000 RPS shows a similar improvement. Our testing has shown that the new server GC mode has very minimal impact on other metrics.

Source: ASP.NET Core Benchmarks (Containers page)

Performance is a consistent focus with every release of .NET and .NET 9 is no different. With every new version, people reach out to us telling us that their app got faster just by upgrading. That is indeed the intent! This time around, we have another set of deep changes that will make your apps run faster and leaner in production.

We are excited to have you try out these latest low-level optimizations in the .NET runtime and give us feedback on their impact of your apps. Now, let’s get into some higher-level discussion with what is new and coming soon for C#!

C# 13

C# 13 focuses on flexibility and performance, making many of your favorite features even better. We’re enhancing params parameters to provide you with more flexibility, taking extensions to the next level with extension types, and are adding several features to enhance performance, some of them you’ll get for free, without having to modify your code. Let’s take a look!

Enhancing C# params

params are no longer restricted to arrays!

When the params keyword appears before a parameter, calls to the method can provide a comma delimited list of zero or more values and those values are placed in a collection of the parameter’s type. Starting in C# 13, the params parameter type can be any of the types used with collection expressions, like List<T>, Span<T>, and IEnumerable<T>. You can even use your own collection types if they follow special rules.

Just specify a different collection type as the parameter type:

void PrintList(params IEnumerable<string> list) 
    => Console.WriteLine(string.Join(", ", list));

PrintList("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");

// prints "Sun, Mon, Tue, Wed, Thu, Fri, Sat"

It’s really that easy to use the collection type that best fits your needs. Programmers using your method can just pass a comma delimited list of values. They do not need to care about the underlying type.

Making params better with spans

One important aspect of performance is reducing memory use, and System.Span<T> and System.ReadonlySpan<T>are tools in reducing memory allocations. You can learn more in Memory and Span usage guidelines.

If you want to use a span, just use the params parameter type to a span type. Values passed to the params parameter are implicitly converted to that span type. If you have two method signatures that differ only by one being a span and the other being an array and the calling code uses a list of values, the span overload is selected. This means you’re running the fastest code available and makes it easier to add span to your apps.

Many of the methods of the .NET Runtime are being updated to accept params Span<T>, so your applications will run faster, even if you don’t directly use spans. This is part of our ongoing effort to make C# faster and more reliable. It’s also an example of the attention we give to ensuring various C# features work well together. Here is an example from StringBuilder.

public StringBuilder AppendJoin(string? separator, params ReadOnlySpan<string?> values)

params and interfaces

The story gets even better with params support for interfaces. If no concrete type is specified, how does the compiler know what type to use?

Just like collection expressions in C# 12, when you specify an interface as a parameter type, it’s a clear indication that you just want anything that implements that interface. Key interfaces are mapped to implementation, so we can give you the best available type that fulfills the interface. The compiler may use an existing type or create one. You should not have any dependencies on the underlying concrete collection type because we will change it if a better type is available.

The great thing about this design is that you can just use interfaces for your params types. If you pass a value of a type that implements the interface, it will be used. When a list of values or a collection expression are passed, the compiler will give you the best concrete type.

Extension types

Extension types aren’t in the current preview, although you’ll see them demonstrated in Mads Torgersen and Dustin Campbell’s What’s new in C# talk. Here’s a sneak peek into this important part of the C# 13 story.

Since C# 3, extension methods have allowed you to add methods to an underlying type, even if you cannot change its code. LINQ is an example of a set of extension methods on IEnumerable<T>. The LINQ extension methods appear as if they were instance methods on the underlying type.

C# 13 takes the next step with extension types. This is a new kind of type that supplies extension members for an underlying type. They have methods, properties and other members that can be instance or static. Instance extension types cannot hold state. For example, they can’t include fields. They can access state on the underlying type or in another location.

There are two kinds of extension types: implicit and explicit extensions. Implicit extension types apply to all occurrences of the underlying type – in the same way extension methods do today. Explicit extension methods and properties apply only to instances of the underlying type that have been converted to the explicit extension type.

An extension type builds on an underlying type, which are just normal C# types. One of the reasons you might use an extension is that you can’t change the code of the underlying type.

Let’s look at some examples, starting with the underlying types and assuming we don’t have access to change their code:

public class Person()
{
    public required string GivenName { get; init; } 
    public required string SurName { get; init; }
    public required Organization Organization { get; init; } 
} 

public class Organization()
{
    public required string Name { get; init; }
    public required List<Team> Teams { get; init; }
} 

public class Team()
{
    public required string TeamName { get; init; }
    public required Person Lead { get; init; }
    public required IEnumerable<Person> Members { get; init; }
} 

A bit of LINQ code can return whether a Person is a lead. Since we don’t want to write this piece of code every time it’s needed, we could write an extension method, and if desired control access to it via namespaces. Or, we could use and implicit extension type to organize the extensions for the Person class, and provide IsLead as a property to all Person instances:

public implicit extension PersonExtension for Person
{
    public bool IsLead
        => this.Organization
            .Teams
            .Any(team => team.Lead == this);
}

This property would be called as:

if (person.IsLead) { ... }

Explicit extensions let you give extra features to specific instances of a type. For example, it makes sense to retrieve which teams a person leads. An explicit extension can provide the Teams property only to leads:

public explicit extension Lead for Person
{
    public IEnumerable<Team> Teams 
        => this.Organization
            .Teams
            .Where(team => team.Lead == this);
}

Both implicit and explicit extension types support static members as well as instance members. One way to use this is to provide defaults specific to your scenario. In this case, we have only one organization, and it’s quite awkward to specify it every time we create a person:

public implicit extension OrganizationExtension for Organization
{
   private static Organization ourOrganization = new Organization("C# Design");

   public static Person CreatePerson(string givenName, string surName) 
       => new(givenName, surName, ourOrganization);
}

Putting this together:

var mads = Organization.CreatePerson("Mads", "Torgersen");
// code to add more people and teams
if (mads.IsLead)
{
    Lead madsAsLead = mads;
    PrintReport(madsAsLead.Teams);
}

From a usage perspective, extension types allow you to simplify the code that provides the important work and logic of your application. It does this by organizing extensions and supplying extensions that customize specific instances of the underlying objects. From a technical perspective, extension types are an enhancement to the extension methods you use today. You’ll be able to experiment with them in a future preview of C# 13.

This is just a quick overview of what we are working on, and you’ll see more detailed posts as we complete features. To see all the features we’re working on, check out the Roslyn feature status page. Find out more about all these features in Mads Torgersen and Dustin Campbell’s talk What’s New in C# 13 at Microsoft Build.

Web Development with .NET

.NET includes ASP.NET Core, which has everything you need to build modern web apps, including browser-based web apps or scalable backend services. With .NET there’s no need to stitch together a solution from multiple different frameworks. .NET is built for security and optimized for performance, so that you’re ready to handle any server scenario.

Overview of platform with web ui, apis, data, and more

We’re continuing to improve the web development experience with .NET and ASP.NET Core. In .NET 9 we’re focused on addressing quality and fundamentals, including performance, security, and reliability. Existing ASP.NET Core features are also getting important upgrades to address the needs of modern cloud-native apps.

Built-in support for OpenAPI document generation

The OpenAPI specification enables developers to define the shape of APIs in a standardized format that can be plugged into client generators, server generators, testing tools, documentation, and more. ASP.NET Core now provides built-in support for generating OpenAPI documents representing controller-based or minimal APIs.

var builder = WebApplication.CreateBuilder();
builder.Services.AddOpenApi();

var app = builder.Build();
app.MapOpenApi();
app.MapGet("/hello/{name}", (string name) => $"Hello {name}"!);

app.Run();

OpenAPI documents can be generated at build-time or runtime from an addressable endpoint and the generated OpenAPI documents can be customized as needed using document and operation transformers.

Improved distributed caching with HybridCache

ASP.NET Core’s support for distributed caching is getting an upgrade with the new HybridCache API. HybridCache augments the existing IDistributedCache support in ASP.NET Core with new capabilities, including multi-tier storage, with a limited in-process (L1) cache supplemented by a separate (usually larger) out-of-process (L2) cache. This “hybrid” approach to cache storage gives the best of both worlds, where most fetches are served efficiently from L1, but cold-start and less-frequently-accessed data still doesn’t hammer the underlying backend, thanks to L2. HybridCache also includes “stampede” protection (to prevent parallel fetches of the same work) and configurable serialization, while simplifying the API usage for common scenarios.

Here’s an example of HybridCache in action:

public class SomeService(HybridCache cache)
{
    public async Task<SomeInformation> GetSomeInformationAsync(string name, int id, CancellationToken token = default)
    {
        return await cache.GetOrCreateAsync(
            $"someinfo:{name}:{id}", // unique key for this combination
            async cancel => await SomeExpensiveOperationAsync(name, id, cancel),
            token: token
        );
    }
}

HybridCache is designed to be a drop-in replacement for most IDistributedCache scenarios, while providing more features, better usability, and improved performance. In our benchmark tests, HybridCache is almost 1000x faster than using IDistributedCache in high cache hit rate scenarios thanks to its multi-tiered cache storage. Caching performance is improved further when using immutable types.

Graph shwoing hybrid cache improements

Full Stack Web UI with Blazor

Blazor makes building web UI for your ASP.NET Core apps simple and productive. Blazor developers who have upgraded to .NET 8 have been taking advantage of new features including static server rendering, streaming rendering, enhanced navigation & form handling, and much more.

Blazor overview of server and client

The feedback from developers has been fantastic, and we have been continuing to improve Blazor with new features that you can try out today in the latest .NET 9 previews including:

  • Component constructor injection: Blazor now supports constructor injection for components in addition to the existing support for property injection with @inject. Constructor injection supports optional services and works great with null state checking.
  • WebSocket compression: The WebSocket traffic for interactive server rendering is now compressed by default, significantly reducing the message payload size.
  • Render pages statically from globally interactive apps: You can now exclude pages from interactive routing in Blazor Web Apps set up for global interactivity and force them to render statically from the server. This is useful when most of your app is interactive, but you have certain pages that must render in the context of a request.

Be sure to check out the release notes for additional details on what’s new in ASP.NET Core in .NET 9 and the ASP.NET Core roadmap for what’s still to come.

Multi-platform Development with .NET

.NET MAUI is .NET’s multi-platform app UI for building beautiful apps across iOS, Android, Mac, and Windows.

.NET MAUI archicture diagram

Since its launch we have seen explosive growth and adoption from new users and existing Xamarin developers migrating to take advantage of new features and performance. Apps that you use every day are built with .NET MAUI including NBC Sports, Hawaiian Airlines, UPS, Microsoft Azure, DigiD, Seeing AI, E-ZPass Pennsylvania, and so many more. We have loved seeing the continued support from the .NET community building beautiful .NET MAUI libraries & controls, such as the .NET MAUI Community Toolkit, and from control vendors including Telerik, Syncfusion, Grial, DevExpress, and so many more. We are humbled to have your support ensuring .NET MAUI is a world class experience for building multi-platform apps.

.NET MAUI customers

In .NET 8, we focused on enhancing performance & quality, supporting our ecosystem, improving the developer experience, and ensuring building Hybrid apps with .NET MAUI and Blazor were top notch. A major focus was shifting our development process to being NuGet package first. This means we can rapidly deploy new service releases and you can easily upgrade in seconds. Today, we are releasing our fourth service release for .NET 8 providing hundreds more improvements that you can leverage today.

Reach with blazor, depth with .NET MAUI, or hybrid chart

Last year we introduced initial support for building .NET MAUI apps in Visual Studio Code across Windows, Mac, and Linux with the C# Dev Kit. This week we have launched a new version of the .NET MAUI extension for VS Code that adds support for XAML IntelliSense and major improvements that you have been requesting. It has been great to see developers leverage VS Code on new platforms for building apps with .NET MAUI, and we have a lot more on the way.

VS Code with xaml intellisense

Moving forward we will continue to enhance our migration story for Xamarin developers moving to .NET MAUI and .NET MAUI developers upgrading to newer versions of .NET with the Upgrade Assistant. We will also continue to have consistent and reliable service releases for .NET 8 as we push forward on adding new features for multi-platform developers in .NET 9. You can start to try out some of our newest features such as iOS library multi-targeting, Android Asset Packs to shrink your app size when dealing with large assets such as videos, and Native AOT experimental support for iOS and Mac Catalyst apps which can trim your app size up to 62% while making your startup times nearly 50% faster! In subsequent previews you’ll see features to make building .NET MAUI hybrid apps easier like a new Solution Template for setting up Blazor Hybrid and web apps that share UI, as well as a new HybridWebView control to enable JavaScript frameworks.

We will continue to prioritize your top feedback and encourage you to be active on our GitHub repo, follow along with our release announcements, and give the latest previews and VS Code integration a spin.

In Summary

We are excited for you to try all of these new features in .NET.

32 comments

Leave a comment

  • Eder Cardoso 4

    Copilot, can you summarize this article?
    Sure, here it is:
    Nothing new, special o exiting about .NET MAUI!

    • Andrew Witte 9

      Making a cross platform Silverlight like approach was always the correct approach for C#.
      AvaloniaUI is the only UI that makes sense in C# world anymore.

    • Maddy MontaquilaMicrosoft employee 2

      MAUI SDK stuff is synced up to .NET releases in the Fall, but “copilot” missed that we shipped XAML IntelliSense for VS Code this week 😄

      • James MontemagnoMicrosoft employee 0

        And also… iOS library multi-targeting, Android Asset Packs to shrink your app size when dealing with large assets such as videos, and Native AOT experimental support for iOS and Mac Catalyst apps which can trim your app size up to 62% while making your startup times nearly 50% faster!

      • Jan Seris 0

        Add more support for Visual Studio for MAUI, it is the main IDE after all!

        Microsoft dropping development of Visual Studio for Mac and then having to implement all that in Visual Studio Code making effectively the main IDE for Mac a slow limited web app whose main purpose is TypeScript web development is an unclear decision

        And especially having MAUI tools for VS for Mac in version 0.10 or 0.20 when VS for Mac reached end of support was funny.

  • MyPassword 0

    Good news, thank you for the summary. I am especially waiting for explicit extension, this will be awesome to add it to current code. Params look great as well.

    • Kathleen DollardMicrosoft employee 0

      I can’t wait to write more about C# 13 as more of the features become available. This is going to be a great release!

  • Dean Gross 1

    I don’t see anything that helps to demonstrate that Microsoft is “prioritizing security above all else”, is there another announcement that is focused on security related improvements?

    • Richard LanderMicrosoft employee 0

      The team has been doing a lot of security work. It didn’t occur to us to include that in the blog post. Most of the work is to our infra, which we rarely talk about (due to level of interest).

      Here’s a post from a few years ago about our infra: https://devblogs.microsoft.com/dotnet/the-evolving-infrastructure-of-net-core/. It has changed since then and is undergoing significant change now. For example, we’ve had 5+ people working on enabling dotnet/dotnet to be the source of our official builds: https://github.com/dotnet/dotnet. We haven’t talked about that at all yet, beyond GitHub issues. We’ll likely post about this after it is real, with .NET 10.

      A concrete example is that we’ve updated our build to use Azure Linux 3.0: https://github.com/dotnet/runtime/issues/91826. We use a modern OS and toolset, while surgically targeting header files from an old OS for broad compatibility, as a general approach. It is challenging to build code that works on a broad set of commonly used OSes (some of which may be in extended support or EOL) while maintaining good security practices. We believe that we’ve developed the best pattern for that. However, the pattern has proven to be somewhat expensive to maintain. I plan to post on this pattern at a later date (after Azure Linux 3.0 is GA).

  • Mike M 1

    Why is the WinUI app development workload for .NET such a large install … 10GB ?

    • Andrew Witte 3

      Does anyone actually even use WinUI outside MS anymore? To this day I can’t find a use for them. WPF is just better for most Windows only things (particularly tools apps).
      For me, MS really killed any desire to use their UI for apps by trying to base it on WinRT ABI frameworks making it pretty much useless IMO.
      This is not the sandbox approach anyone was looking to dev for (been true since Win8). Silverlight in WP7 was better tbh. I’ve mostly just stopped following anything about it for the most part.

      Does .NET 3,6,8 even run in a UWP app? I don’t think so. So the Win10/11 stores just updated to run Win32/Win64 apps instead & a bunch of odd workarounds to get WinUI frameworks to link in those desktop apps needed. Is that about right or am I missing something?

      • Jan Seris 0

        Remember that MS can probably force apps published in Microsoft Store to use specific frameworks if not already done yet.

        E.g. requiring these with the new permissions concept which is in WinUI (but maybe in some of the older UWP ones as well, I don’t know exactly)

  • Sherif Elmetainy 2

    The Extension Types in C# 13 looks interesting.

    It would be nice if explicit extension types can be used with pattern matching. For example, in the example mentioned in this article, it would be cleaner if we can write

    if(mads is Lead madsAsLead)

    With some syntax that allows the IsLead property to be used as a test. The user-defined type guards feature of TypeScript comes to mind. So the IsLead property can be written to return a something similar to TypeScript’s type predicate instead of bool.

    • Kathleen DollardMicrosoft employee 0

      That is definitely on our mind. Once we all have it in hand, I expect we will find some great next steps and that extension types will evolve over the next couple of releases!

  • silkfire 0

    Will there be a way to combine multiple explicit extensions on the same instance? Like e.g.

    Lead Lead2 Lead3 madsAsLead = mads;
    • Kathleen DollardMicrosoft employee 0

      I’m not sure what you are looking for here, and would love to hear how you would use code like this.

      C# will remain a strongly typed language. While a particular instance can have different personalities – via base classes, interfaces, and now explicit extension types – a particular variable will be of a specific type (that can be converted to other types, sometimes automatically).

  • Chris Jensen 1

    “Extension types” looks interesting. Is the intention to make them function like traits further down the road? Seeing the popularity of Rust and all.
    E.g. would you be able to specify Lead as a parameter-type, public Task BotherTeamLead(Lead lead);, and then make multiple unrelated types all have the same extensions for Lead (Lead could be an interface).
    Because if you squint a bit, the syntax for extension types introduced here looks a lot like trait implementations.

    • Kathleen DollardMicrosoft employee 1

      One of the challenging (and sometimes quite fun) aspects of designing C# is that we draw ideas from other languages, but find what we think is the best C# way to do them. Traits was certainly one of the inspirations.

      Extensions are not interfaces. They are associated with a specific underlying type. I think we will get closer to traits if we combine them with interfaces – allowing extensions to implement interfaces for the underlying type. That will not be in C# 13 but we are looking forward to feedback on doing that in the future.

      • Chris Jensen 1

        allowing extensions to implement interfaces for the underlying type

        I think that’d be an elegant solution, nice job! Looking forwards to it maybe-happening sometimes in the future (:

  • Michael . 0

    looking for more sources regarding c# “Extension types” is a good example, how different bing.com & google.com are working. That’s not gloating, I prefer the Edge browser with Bing.

    bing.com:
    results on 1st pages mainly about ‘Extension Method’

    google.com:
    results on 1st page are all correct and fit the topic

    • Kathleen DollardMicrosoft employee 0

      You won’t find much on extension types yet because we are still building it. We got the first (partially) working bits last week. We’ll preview extension types in upcoming Visual Studio and .NET 9 previews. Look for an in-depth blog post and Microsoft Learn documentation when you can experiment with this brand new feature.

  • Arh Jotaro 0

    Looks promising,…
    any news about the AOT?
    thanks

  • Vijay Anand E G 0

    The output of PrintList method (params sample) would be without surrounding quotes.

Feedback usabilla icon