Announcing .NET 5.0 Preview 8

Rich Lander [MSFT]

Today, we are releasing .NET 5.0 Preview 8. The .NET 5.0 release is now “feature complete”, meaning that very nearly all features are in their final form (with the exception of bug fixes still to come). Preview 8 is, appropriately, the last preview. We plan on releasing two go-live release candidates before the final .NET 5.0 release in November. This post describes a selection of features across the .NET 5.0 release.

You can download .NET 5.0, for Windows, macOS, and Linux:

We also released new versions of ASP.NET Core and EF Core today.

You need the latest preview version of Visual Studio (including Visual Studio for Mac) to use .NET 5.0.

.NET 5.0 includes many improvements, notably single file applications, smaller container images, more capable JsonSerializer APIs, a complete set of nullable reference type annotations, and support for Windows ARM64. Performance has been greatly improved, in the NET libraries, in the GC, and the JIT. ARM64 was a key focus for performance investment, resulting in much better throughput and smaller binaries. .NET 5.0 includes new language versions, C# 9 and F# 5.0.

.NET 5.0 also includes support for Web Assembly, using the Mono runtime and the .NET Libraries. This is the foundation of Blazor Web Assembly in .NET 5.0. This is a change from Blazor 3.2, which used the Mono runtime and Mono libraries. Last year, we presented a vision of a unified .NET platform, with one set of libraries and tools for all .NET app types. The benefits of this change are a single development experience for .NET, much higher compatibility between the various .NET app types and maintaining and improving just one code base. The change we made with Web assembly, to use the .NET libraries, is a down-payment on that vision. We expect to deliver the rest of the vision, largely focused on Xamarin (iOS and Android), with .NET 6.0.

Now that the release is feature-complete, let’s take a look at a subset of what’s coming in .NET 5.0. The post is composed of a set of thematic sections: Languages, Tools, APIs, Runtime technology and Application deployment. These sections, and their order, roughly reflect the development process and lifecycle. This will help you find the content you want if you are more interested in one development aspect than another.

Languages

C# 9 and F# 5 are part of the .NET 5.0 release and included in the .NET 5.0 SDK. Visual Basic is also included in the 5.0 SDK. It does not include language changes, but has improvements to support the Visual Basic Application Framework on .NET Core.

C# Source Generators are an important new C# compiler feature that isn’t technically part of C# 9 since it doesn’t have any language syntax. See New C# Source Generator Samples to help you get started using this new feature.

C# 9

C# 9 is a significant release of the language, focused on program simplicity, data immutability and more patterns. In this post, we’ll stick to what might be the crowd favorites.

Top-level programs

Top-level programs offer a simpler syntax for programs, with much less ceremony. This syntax will help people learning the language in the first place. We expect the top-level program syntax to get simpler in subsequent releases, like the removal of default using statements.

The following is the C# 9 version of “hello world”.

using System;

Console.WriteLine("Hello World!");

Top-level programs can be extended to use more functionality, such as defining and calling a method or class within the same file.

using System;
using System.Runtime.InteropServices;

Console.WriteLine("Hello World!");
FromWhom();
Show.Excitement("Top-level programs can be brief, and can grow as slowly or quickly in complexity as you'd like", 8);

void FromWhom()
{
    Console.WriteLine($"From {RuntimeInformation.FrameworkDescription}");
}

internal class Show
{
    internal static void Excitement(string message, int levelOf)
    {
        Console.Write(message);

        for (int i = 0; i < levelOf; i++)
        {
            Console.Write("!");
        }

        Console.WriteLine();
    }
}

This program produces the following output.

[rich@taumarunui test]$ ~/dotnet/dotnet run
Hello World!
From .NET 5.0.0-preview.8
Top-level programs can be brief, and can grow as slowly or quickly in complexity as you'd like!!!!!!!!

Pattern matching

Patterns test that a value has a certain shape, and can extract information from the value when it has the matching shape. New pattern matching improvements have been added in the last few versions of C#.

I’ll share two examples. The first demonstrates property patterns. It checks for null (with is) before comparing the context object to a specific pattern.

if (context is {IsReachable: true, Length: > 1 })
{
    Console.WriteLine(context.Name);
}

This is equivalent to:

if (context is object && context.IsReachable && context.Length > 1 )
{
    Console.WriteLine(context.Name);
}

Also equivalent to:

if (context?.IsReachable && context?.Length > 1 )
{
    Console.WriteLine(context.Name);
}

The following example uses relational patterns (like <, <=), and logical ones (like and, or and not). The following code produces the highway toll (as a decimal) for a delivery truck based on its gross weight. For those not familiar, m after a numeric literal tells the compiler than the number is a decimal and not a double.

DeliveryTruck t when t.GrossWeightClass switch
{
    < 3000 => 8.00m,
    >= 3000 and <= 5000 => 10.00m,
    > 5000 => 15.00m,
},

Target-typed new expressions

Target-typed new expressions are a new way to remove type duplication when constructing objects/values.

The following examples are all equivalent, with the new syntax being the middle one.

List<string> values = new List<string>();
List<string> values = new();
var values = new List<string>();

Many people will prefer this new syntax over var (I’m guessing) for two reasons: many people read left-to-right and want the type information on the left hand side of =, and (likely more importantly) the left side is solely dedicated to type information and not distracted by the complexity or nuance of a particular constructor (on the right-hand side).

F# 5

Building on updates to the F# 5 preview released earlier this year, this final update to F# 5 wraps up language support and adds two new features, Interpolated Strings and Open Type Declarations. Here’s a sneak peek at what you can do with them:

Interpolated Strings

Interpolated strings in F# are one of the most highly-requested features. People familiar with them in C# and JavaScript (and perhaps other languages) have come to love them in those languages. In F#, we’re introducing interpolated strings in an untyped fashion as they exist in other languages, but also with typed interpolated holes where the expression in an interpolated context must match a type given by a string format specifier.

Open Type Declarations

Open Type Declarations in F# are similar to the ability to open static classes in C#, but with a slightly different syntax. They are also extended to allow opening F# specific types. Stay tuned for a blog post that goes over the details.

Tools

In this post, we’re going to focus on runtime diagnostic tools.

Microsoft.Extensions.Logging

We’ve made improvements to the console log provider in the Microsoft.Extensions.Logging library. Developers can now implement a custom ConsoleFormatter to exercise complete control over formatting and colorization of the console output. The formatter APIs allow for rich formatting by implementing a subset of the VT-100 (supported by most modern terminals) escape sequences. The console logger can parse out escape sequences on unsupported terminals allowing you to author a single formatter for all terminals.

In addition to support for custom formatters, we’ve also added a built-in JSON formatter that emits structured JSON logs to the console.

Dump debugging

Debugging managed code requires special knowledge of managed objects and constructs. The Data Access Component (DAC) is a subset of the runtime execution engine that has knowledge of these constructs and can access these managed objects without a runtime. Beginning in Preview 8, we’ve started to compile the Linux DAC against Windows. .NET Core process dumps collected on Linux can now be analyzed on Windows using WinDBG or dotnet dump analyze.

In Preview 8, we’ve also added support for capturing ELF dumps from .NET processes running on macOS. Since ELF is not the native executable (native debuggers like lldb will not work with these dumps) file format on macOS, we have made this an opt-in feature. To enable support for dump collection on macOS, set the environment variable COMPlus_DbgEnableElfDumpOnMacOS=1. The resulting dumps can be analyzed using dotnet dump analyze.

Assembly load diagnostics added to event pipe

We added assembly load information to event pipe. You can think of this as a replacement to the Fusion Log Viewer. You can now use dotnet-trace to collect this information, using the following command:

dotnet-trace collect --providers Microsoft-Windows-DotNETRuntime:4:4 --process-id [process ID]

The workflow is described in Trace Assembly Loading with Event Pipe.

Printing environment information

As .NET has extended support for new operating systems and chip architectures, people sometimes want a way to print environment information. We created a simple .NET tool that does this, called dotnet-runtimeinfo.

You can install and run the tool with the following commands.

dotnet tool install -g dotnet-runtimeinfo
dotnet-runtimeinfo

The tool produces output in the following form for your environment.

[rich@taumarunui ~]$ dotnet-runtimeinfo
.NET information
Version: 5.0.0
FrameworkDescription: .NET 5.0.0-preview.8.20407.11
Libraries version: 5.0.0-preview.8.20407.11
Libraries hash: bf456654f9a4f9a86c15d9d50095ff29cde5f0a4

**Environment information
OSDescription: Linux 5.8.3-2-MANJARO-ARM #1 SMP Sat Aug 22 21:00:07 CEST 2020
OSVersion: Unix 5.8.3.2
OSArchitecture: Arm64
ProcessorCount: 6

**CGroup info
cfs_quota_us: -1
memory.limit_in_bytes: 9223372036854771712
memory.usage_in_bytes: 2945581056

Library APIs

Many new APIs were added and improved in .NET 5.0. The following are important changes top be aware of.

Nullable Annotations

Nullable reference types was an important feature of C# 8 and .NET Core 3.0. It was released with a lot of promise, but was missing exhaustive platform annotations to make it truly useful and practical. The wait is (largely) over. The platform is now 80% annotated for nullability. We’re looking into whether we can annotate the remaining 20% before we ship .NET 5.0 RTM. If not, we’re going to finish the remaining annotations early in .NET 6.0.

The following image illustrates the progress we’ve made over time.

image

This also means that your existing .NET Core 3.1 code might generate new diagnostics (if you have nullability enabled) when you retarget it to .NET 5.0. If that happens, you can thank us for helping you avoid nulls.

Regular expression performance improvements

We’ve invested in significant improvements to the Regex engine. On many of the expressions we’ve tried, these improvements routinely result in throughput improvements of 3-6x, and in some cases, much more. The changes we’ve made in System.Text.RegularExpressions have had measurable impact on our own uses, and we hope these improvements will result in measurable wins in your libraries and apps, as well.

.NET 5.0 Target Framework

We are changing the approach we use for target frameworks with .NET 5.0. The following project file demonstrate the new .NET 5.0 target framework.

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net5.0</TargetFramework>
  </PropertyGroup>

</Project>

The new net5.0 form is more compact and intuitive than the netcoreapp3.1 style we’ve used until this point. In addition, we are extending the target framework to model operating systems. This change is motivated by our vision to enable targeting iOS and Android with Xamarin in .NET 6.0.

Windows desktop APIs will only be available when targeting net5.0-windows. You can specify an operating system version, like net5.0-windows7 or net5.0-windows10.0.17763 (October 2018 Update). You need to target a Windows 10 version if you want to use WinRT APIs.

Summary of changes:

  • net5.0 is the new Target Framework Moniker (TFM) for .NET 5.0.
  • net5.0 combines and replaces netcoreapp and netstandard TFMs.
  • net5.0 supports .NET Framework compatibility mode
  • net5.0-windows will be used to expose Windows-specific functionality, like Windows Forms and WPF.
  • .NET 6.0 will use the same approach, with net6.0 and will add net6.0-ios and net6.0-android.
  • The OS-specific TFMs can include OS version numbers, like net6.0-ios14.
  • Portable APIs, like ASP.NET Core and Xamarin.Forms, will be usable with net5.0.

WinRT Interop (Breaking Change)

We have moved to a new model for supporting WinRT APIs as part of .NET 5.0. This includes calling APIs (in either direction; CLR <==> WinRT), marshaling of data between the two type systems, and unification of types that are intended to be treated the same across the boundary (i.e. “projected types”; IEnumerable<T> and IIterable<T> are examples).

We will rely on a new set of WinRT tools provided by the WinRT team in Windows that will generate C#-based WinRT interop assemblies.

There are several benefits to the new WinRT interop system:

  • It can be developed and improved separate from the .NET runtime.
  • Symmetrical with interop systems provided for other OSes, like iOS and Android.
  • Can take advantage of many other .NET features (AOT, C# features, IL linking).
  • Simplifies the .NET runtime codebase.

The existing WinRT interop system has been removed from the .NET runtime (and any other associated components) as part of .NET 5.0. This is a breaking change. That means that apps using WinRT with .NET Core 3.x will need to be rebuilt and will not run on .NET 5.0 as-is.


Runtime Technology

Many new features were added in .NET 5.0. A small selection is described below.

Windows ARM64

We added support for Windows ARM64 as part of this release. We’ve made the relatively late decision to delay the Windows Desktop component (Windows Forms, WPF). Windows Forms is near ready, but WPF is not, and we don’t want to release only half the Windows Desktop component, in part because we don’t test it in a split configuration. We hope to add the Windows Desktop component back as part of a 5.0 servicing update.

We are working with some ISVs currently who want their apps available on Windows ARM64. Please contact us at dotnet@microsoft.com if this matches your scenario. We will want to get you access to builds as soon as they are available.

Event pipe profiler APIs

Event pipe is a new subsystem and API that we added in .NET Core 2.2 to make it possible to perform performance and other diagnostic investigations on any operating system. In .NET 5.0, the event pipe has been extended to enable profilers to write event pipe events. This scenario is critical for instrumenting profilers that previously relied on ETW to monitor application behavior and performance.

Native exports

You can now export managed methods to native code. The building block of the feature is hosting API support for UnmanagedCallersOnlyAttribute.

Aaron Robinson, on our team, has been working on a .NET Native Exports project that provides a more complete experience for publishing .NET components as native libraries. We’re looking for feedback on this capability to help decide if the approach should be included in the product in a later release.

There are existing projects that enable similar scenarios, such as:

Application deployment

After writing or updating an application, you need to deploy it for your users to take advantage of. In this release, we’ve focused on single file applications, and improve ClickOnce for .NET Core.

Single file applications

Single file applications are published and deployed as a single file. The app and its dependencies are all included within that file. When the app is run, the dependencies are loaded directly from that file into memory. There is no performance penalty with this approach. When combined with assembly trimming and ahead-of-time compilation, single file apps are smaller and startup quickly.

In .NET 5.0, single file apps are primarily focused on Linux (more on that later). They can be either framework-dependent or self-contained. Framework-dependent single file apps can be very small, by relying on a globally-installed .NET runtime. Self-contained single-file apps are larger (due to carrying the runtime), but do not require installation of the .NET runtime as an installation pre-step and will just work as a result. In general, framework-dependent is good for development and enterprise environments, while self-contained is often a better choice for ISVs.

We produced a version of single-file apps with .NET Core 3.1. It packages binaries into a single file for deployment and then unpacks those files to a temporary directory to load and execute them. There may be some scenarios where this approach is better, but we expect that the solution we’ve built for 5.0 will be preferred and a welcome improvement.

We had multiple hurdles to overcome to create a true single-file solution. We had to create a more sophisticated application bundler, teach the runtime to load assemblies out of binary resources, and make the debugger compatible with memory-mapped assemblies. We also ran into some hurdles that we could not clear.

On all platforms, we have a component called “apphost”. This is the file that becomes your executable, for example myapp.exe on Windows or ./myapp on Unix-based platforms. For single file apps we created a new host we call “superhost”. It has the same role as the regular apphost, but also includes a statically-linked copy of the runtime. The superhost is a fundamental design point of our single file approach. This model is the one we use on Linux. We were not able to implement this approach on Windows or macOS, due to various operating system constraints. We do not have a superhost on Windows or macOS. On those operating systems, the native runtime binaries (~3 of them) sit beside the single file app. We will revisit this situation in .NET 6.0, however, we expect the problems we ran into to remain challenging.

You can use the following commands to produce single-file apps.

  • Framework-dependent single-file app:
    • dotnet publish -r linux-x64 --self-contained false /p:PublishSingleFile=true
  • Self-contained single-file app with assembly trimming and ready to run enabled:
    • dotnet publish -r linux-x64 --self-contained true /p:PublishSingleFile=true /p:PublishTrimmed=true /p:PublishReadyToRun=true

You can also configure single file publishing with a project file.

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net5.0</TargetFramework>
    <!-- Enable single file -->
    <PublishSingleFile>true</PublishSingleFile>
    <!-- Determine self-contained or framework-dependent -->
    <SelfContained>true</SelfContained>
    <!-- The OS and CPU type you are targeting -->
    <RuntimeIdentifier>linux-x64</RuntimeIdentifier>
    <!-- Enable use of assemby trimming - only supported for self-contained apps -->
    <PublishTrimmed>true</PublishTrimmed>
    <!-- Enable AOT compilation -->
    <PublishReadyToRun>true</PublishReadyToRun>
  </PropertyGroup>

</Project>

Notes:

  • Apps are OS and architecture-specific. You need to publish for each configuration (Linux x64, Linux ARM64, Windows x64, …).
  • Configuration files (like *.runtimeconfig.json) are included in the single file. You can place an additional config file beside the single file, if needed (possibly for testing).
  • .pdb files are not included in the single file by default. You can enable PDB embedding with the <DebugType>embed</DebugType> property.

We’ve seen a lot of comments on previous preview posts asking about the relationship between single file apps and ahead of time (AOT) compilation. AOT is a spectrum. The ready-to-run code that dotnet publish generates (when you set PublishReadyToRun to true) is an example of AOT. When you publish ready-to-run images, the build generates machine code for you, ahead of time, instead of the JIT doing it at runtime. Most people will likely accept this as a definition of AOT. However, many people mean something more specific when they say AOT. They want a solution that has the following characteristics: extremely fast startup, no IL present (for size and obfuscation reasons), a JIT is (at most) optional, and binary size is as small as it can be. We use the term “native AOT” to describe that point on the AOT spectrum. The single file solution we have in .NET 5.0 doesn’t satisfy this definition of AOT. It’s a big step forward, but it isn’t “native AOT”. We recently published a survey on Native AOT to get more feedback on that modality. We’re looking through the results now and will include them in our 6.0 planning effort.

Reducing the size of container images

We are always looking for opportunities to make .NET container images smaller and easier to use. We re-based the SDK image on top of the ASP.NET image instead of buildpack-deps to dramatically reduces the size of the aggregate images you pull in multi-stage build scenarios

This change has the following win for multi-stage builds (example usage in Dockerfile):

Multi-stage build costs with Ubuntu 20.04 Focal:

Pull Image Before After
sdk:5.0-focal 268 MB 232 MB
aspnet:5.0-focal 64 MB 10 KB (manifest only)

Net download savings: 100 MB (-30%)

Multi-stage build costs with Debian 10 Buster:

Pull Image Before After
sdk:5.0 280 MB 218 MB
aspnet:5.0 84 MB 4 KB (manifest only)

Net download savings: 146 MB (-40%)

See dotnet/dotnet-docker #1814 for more detailed information.

This change helps multi-stage builds, where the sdk and the aspnet or runtime image you are targeting are the same version (we expect that this is the common case). With this change, the aspnet pull (for example), will be a no-op, because you will have pulled the aspnet layers via the initial sdk pull.

We made similar changes for Alpine and Nano Server. There is no buildpack-deps image for either Alpine or Nano Server. However, the sdk images for Alpine and Nano Server were not previously built on top of the ASP.NET image. We fixed that. You will see significant size wins for Alpine and Nano Server as well with 5.0, for multi-stage builds.

ClickOnce Support

We announced a few months ago that we were going to provide ClickOnce support for .NET Core. This project is still ongoing. We hope to deliver it as part of RC2. I just wanted to share that we’re still working on this project.

Closing

“Closing” is a funny section title at this point in the release. The release is indeed closing. The team is focused on closing out all of remaining 5.0 issues and getting the final bug fixes and improvements into the release. Even the 5.0 Runtime Epics issue has been closed.

We’re working on some deep-dive posts that we plan to publish before the final release on various topics. Look out for those. You can also expect an even longer post for the final release that covers a much broader set of improvements and features.

Thanks for all the support on the release and for all the contributions.

86 comments

Discussion is closed. Login to edit/delete existing comments.

  • Holger Schwichtenberg (www.DOTNET-DOKTOR.de) 0

    I believe, there is a mistake in one of the samples.
    You wrote:
    dotnet tool install -f dotnet-runtimeinfo
    Shouldn’t it be a global install with “-g”?
    dotnet tool install -g dotnet-runtimeinfo

  • Tonytins 0

    net5.0 combines and replaces netcoreapp and netstandard TFMs.

    Oh. Was not expecting that. Guess I should have because Blazor: WebAssembly targets .NET Standard but requires .NET 5 to get further updates. I’m guessing this is to bring it back to that .NET Framework paradigm now that everything is unified again.

    • Richard LanderMicrosoft employee 0

      Yes. You’ve got the picture.

  • Gábor Szabó 0

    Great job Richard and the .NET teams! Good news all around. I am very happy when you post these release notes, as it is painfully obvious that you are doing your very best at innovating and manage to find the limits that are possible at any given point in time regarding certaiin features.

    I was wondering ever since the premature death of XNA, will there be an official/non-hacky solution to call DirectX from .NET? Seeing that so much progress is being made in regards to AOT, interop (especially WinRT) and performance, I feel it might be an obvious next step. It could open the floodgates for custom game engines made in .NET.

    Thanks again, keep up the great work! Don’t forget to take a break every now and then.

      • anonymous 0

        this comment has been deleted.

    • Guy 0

      MonoGame

      MonoGame is a simple and powerful .NET library for creating games for desktop PCs, video game consoles, and mobile devices.

      Based on Microsoft’s XNA Framework it provides the following features:

      Game framework
      2D and 3D rendering
      Sound effect and music playback
      Keyboard, mouse, touch, and controller inputs
      Content building and optimization
      Math library optimized for games

  • Mikhail Nikitin 0

    What’s the future of UWP?

        • Richard LanderMicrosoft employee 0

          I’ll try my best.

          Project Reunion — Windows-specific project, that intends to merge the concepts and capabilities of UWP and Windows Desktop into one app-model. Uses WinUI v3 as the UI stack.
          Uno Platform — A cross-platform UI solution based on the UWP API.
          MAUI — A cross-platform UI solution based on Xamarin.Forms.

      • Kyle Nanakdewa 0

        Reunion currently only enables new features for UWP (such as new WinUI replacing the old Windows.UI.Xaml). It doesn’t enable (nor does it seemingly plan to enable) .NET 5 in UWP app model, and Reunion isn’t an app model on its own (according to its FAQ) so it can’t be considered a full replacement for UWP.

        Is there any future for .NET 5 (or 6) in UWP (using the definition of UWP on the Reunion FAQ)? It hasn’t been updated past .NET Core 2.2, although someone seems to have gotten it working… are there any plans for this to be officially supported (or any sort of roadmap for UWP specifically)?

        Or to put this another way, any plans for .NET 5 (or 6) to be available on platforms like Windows 10X, Xbox, WMR/HoloLens, etc…?

  • 守东 王 0

    about Native exports.

    now Native exports do not support linux-arm64?

    i wanna got the plan about Native exports supports linux-arm64.

    thanks.

    • Richard LanderMicrosoft employee 0

      They should work on Linux ARM64. If they don’t, please file an issue at dotnet/runtime. Feel free to reply w/it here.

      This feature area is new. I’d like to learn more about what you are doing. If you are willing to share, please reach out at dotnet@microsoft.com.

      • 守东 王 0

        ok let me try it .
        last week , i try it in .Net 5 preview 7 docker image (linux-arm64) ,got the issue, just support linux-x64.

        • Aaron RobinsonMicrosoft employee 0

          Hi,

          The DNNE library doesn’t support ARM64 at present purely because it is limited in scope as an experiment. However, the .NET Runtime should have no issues support this if done manually – less than ideal. Please file an issue with some details about the environment at https://github.com/AaronRobinsonMSFT/DNNE/issues. If possible adding notes about the specific scenario will help us track why I added support – other than user requested. Knowing the scenarios helps us see “bigger picture” scenarios we should support or more often anticipate where users may hit known limitations and we can proactively fix those bugs before users hit them.

          Supporting ARM64 shouldn’t be too difficult, just time to fold it in and properly test it.

          Aaron

  • Michal Dobrodenka 0

    With earlier Previews, app must be compiled to exact SDK version to run with specific NET5 runtime. File *.dotnet.runtimeconfig.json contains exact version.

    eg “version”: “5.0.0-preview.7.20364.11”

    So it means that I have to recompile app to run after NET5 update.

    Will this be true also with RCs?

      • Michal Dobrodenka 0

        Thank you for your reply!

        I didn’t know that I can run Preview6 app on Preview8 framework. It doesnt work backwards, so I assumed it is the same in both directions.

        1. Will Preview8 framework run app compiled against NET5 RTM SDK?

        2. Will NET5 RC1 framework run app compiled against NET5 RTM SDK?

        I assume 1. No and 2. Yes but I just want to be sure.

        • Richard LanderMicrosoft employee 0

          The intent is that preview and RC apps will run on the RTM version of .NET 5.0.

          • Michal Dobrodenka 0

            OK, thanks.

            What about other directions, will NET5.0 RC1 run NET5 RTM app?

          • Richard LanderMicrosoft employee 0

            RC1 should not run RTM apps. That should fail with a helpful error message and download link.

  • Kirsan 0

    Will WinForms designer be ready to release?

    • Richard LanderMicrosoft employee 0

      I asked a WinForms team member to reply.

      • Eaton 0

        I too am curious where things are with the designer now, especially with third-party control support.

  • Mustafa Al Ibrahim 0

    Excited about single file applications. I hope the challenges are addressed for Windows later on.

    • Richard LanderMicrosoft employee 0

      Me, too. Thanks for dropping by.

      • Waqas Ahmed 0

        Hi, there are tools like https://github.com/dgiagio/warp which works across all platforms.

        • Richard LanderMicrosoft employee 0

          Warp uses a self-extracting approach, right? The single file application approach we had for .NET Core 3.0 does that, too. The 5.0 version of single file doesn’t extract to disk. That was the goal of the 5.0 project.

          • Max Mustermueller 0

            Last time I read about native files are still extracted to disk. Only .NET components are loaded from memory. Has this changed/fixed too?

          • Richard LanderMicrosoft employee 0

            You are correct. Native binaries are still exacted to disk. On Linux, the runtime is statically linked into the host/launcher. We don’t (yet) offer that model for any other native code.

  • Plakhotnyi Andrii 0

    Where I can find relevant specs for C# 9.0 records?

      • Richard LanderMicrosoft employee 0

        Yes.

        Here’s the syntax I’m using:

        public record MyRecord(string Property1, int Property2);
        • Collin B 0

          So has the keyword changed from ‘data’ to ‘record’? Because that would make a lot of sense. This blog post presents a record definition as using the keyword “data”.

  • Gurpreet Juttla 0

    Great release!
    I have question regarding trimmed assemblies. Would there a be possibility to check at runtime or via assembly metadata whether an assembly has been trimmed?
    Thanks

    • Richard LanderMicrosoft employee 0

      I do not believe this information is recorded. What would you do with that information?

      • Gurpreet Juttla 0

        Trimmed assemblies present a challenge for a CLR profiler which performs instrumentation (IL rewriting, metadata changes) because there is no guarantee about the existence of types anymore. One safety net would be to disable instrumentation completely if a trimmed assembly is detected.

        If there is no such possibility yet, it would make sense to add that. Maybe just by adding a custom attribute on the assembly?

Feedback usabilla icon