Showing results for clr - .NET Blog

Oct 10, 2019
62
0

Blazor Server in .NET Core 3.0 scenarios and performance

Daniel Roth
Daniel Roth

Blazor Server in .NET Core 3.0 enables you to add rich interactive UI to your .NET apps without having to write JavaScript. Learn about when to use Blazor Server, how it scales, how it relates to Blazor WebAssembly, and how we expect to evolve Blazor in the future.

ASP.NET.NET CoreASP.NET Core
Nov 28, 2018
1
0

Announcing .NET Framework 4.8 Early Access build 3694

namrata karnam
namrata karnam

We are happy to let you know that .NET Framework 4.8 is now feature complete and we have an early access build to share with you all! We will continue to stabilize this release and take more fixes over the coming months, and we would greatly appreciate it if you could help us ensure this is a high-quality release by trying it out and providing ...

.NET Framework.NET
Jul 20, 2017
0
0

Profile-guided optimization in .NET Core 2.0

Bertrand Le Roy
Bertrand Le Roy

This post was co-written by Daniel Podder and Bertrand Le Roy. .NET Core 2.0 introduces many new optimizations that will make your code even faster. A lot of work has been done in the base class library to improve performance, but in this post, we'd like to talk about a specific category of optimization: profile-guided optimization (or PGO, ...

.NET
Dec 13, 2016
0
0

December 2016 Update for .NET Core 1.0

KendraHavens
KendraHavens

Today, we are releasing a new set of reliability and quality updates for .NET Core 1.0. This month's update is our second Long Term Support (LTS) update and includes updated versions of multiple packages in .NET Core, ASP.NET Core and Entity Framework Core. We recommend everyone on the 1.0.* LTS track move to this update immediately. How to Obtain...

.NET
Feb 3, 2015
0
0

CoreCLR is now Open Source

.NET Team
.NET Team

We’re excited to announce that CoreCLR is now open source on GitHub. CoreCLR is the .NET execution engine in .NET Core, performing functions such as garbage collection and compilation to machine code. .NET Core is a modular implementation of .NET that can be used as the base stack for a wide variety of scenarios, today scaling from console ...

.NET
Jul 2, 2014
0
0

dotnetConf 2014 Wrapup

.NET Team
.NET Team

We just wanted to say thank you for your time attending the dotnetConf in June 2014 where we shared innovation and news about the present and future of .NET, all in a single place focusing on .NET technologies.  You may have missed sessions during the streaming delivered on June 25th and 26th, so, for your convenience, we’d like to remind ...

.NET
May 13, 2014
0
0

Update to SIMD Support

Immo Landwerth
Immo Landwerth

A month ago we announced support for SIMD. Today, we're announcing an update to "RyuJIT" and our NuGet package that exposes the SIMD programming model. Updates to the Microsoft.Bcl.Simd NuGet package More types for We've expanded the support of the types: Support for mutable vector types We've also changed our stance on immutability. In the ...

.NET
May 12, 2014
0
0

The Next Generation of .NET – ASP.NET vNext

.NET Team
.NET Team

Updated (2017): See .NET Framework Releases to learn about newer releases. Updated (July 2015): See Announcing .NET Framework 4.6 to read about the latest version of the NET Framework. Today at TechEd North America, we announced the latest set of innovations that are part of the next generation of .NET. The biggest of those is ASP.NET vNext, ...

.NET
Apr 30, 2014
0
0

Get your libraries ready for Windows Phone 8.1

Immo Landwerth
Immo Landwerth

Two weeks ago, we released the Windows Phone preview for developers. In this post, I’ll cover what this means for library and app developers. What this means for library developers As a .NET developer you can target Windows Phone 8.1 via two platforms: Apps that target Windows Phone Silverlight 8.1 can consume existing libraries and ...

.NET
Apr 7, 2014
0
0

The JIT finally proposed. JIT and SIMD are getting married.

Immo Landwerth
Immo Landwerth

Processor speed no longer follows Moore’s law. So in order to optimize the performance of your applications, it’s increasingly important to embrace parallelization. Or, as Herb Sutter phrased it, the free lunch is over. You may think that task-based programming or offloading work to threads is already the answer. While multi-threading ...

.NET