Showing results for .NET Core - .NET Blog

Aug 5, 2019
12
0

Improving .NET Core installation in Visual Studio and on Windows

Lee Coward
Lee Coward

Visual Studio 2019 version 16.3 and .NET Core 3.0 Preview 7 improve the installation experience of .NET Core on Windows. The goal is to reduce the number of .NET Core versions that might be on a machine. The improvements are based on customer feedback and our own experiences as well as laying the groundwork for future improvements. .NET Core SDK i...

.NET Core
Jun 13, 2019
6
0

Announcing Entity Framework Core 3.0 Preview 6 and Entity Framework 6.3 Preview 6

Diego Vega
Diego Vega

New previews of the next versions of EF Core and EF 6 are now available on NuGet.Org. What is new in EF Core 3.0 Preview 6 In recent months, a lot of our efforts have been focused on a new LINQ implementation for EF Core 3.0. Although the work isn't complete and a lot of the intended functionality hasn't been enabled, before preview 6 we reached ...

Entity Framework
Jun 13, 2019
73
0

Try the new System.Text.Json APIs

Immo Landwerth
Immo Landwerth

For .NET Core 3.0, we're shipping a brand new namespace called System.Text.Json with support for a reader/writer, a document object model (DOM), and a serializer. In this blog post, I'm telling you why we built it, how it works, and how you can try it. We also have a video: Getting the new JSON library The future of JSON in ....

.NET
Jun 10, 2019
6
0

Migrating a Sample WPF App to .NET Core 3 (Part 2)

Mike Rousos
Mike Rousos

In part 1 of this blog series, I began the process of porting a sample WPF app to .NET Core. In that post, I described the .NET Core migration process as having four steps: We previously went through the first two steps - reviewing the app and its dependencies (including NuGet dependencies and a .NET Portability Analyzer report), updating NuGet ...

.NET Core.NET.NET Framework
Jun 10, 2019
7
0

Migrating a Sample WPF App to .NET Core 3 (Part 1)

Mike Rousos
Mike Rousos

Olia recently wrote a post about how to port a WinForms app from .NET Framework to .NET Core. Today, I'd like to follow that up by walking through the steps to migrate a sample WPF app to .NET Core 3. Many of these steps will be familiar from Olia's post, but I've tried to differentiate this one by including some additional common dependencies that...

.NET Core.NET.NET Framework
May 28, 2019
30
0

Porting desktop apps to .NET Core

Olia Gavrysh
Olia Gavrysh

Since I've been working with the community on porting desktop applications from .NET Framework to .NET Core, I've noticed that there are two camps of folks: some want a very simple and short list of instructions to get their apps ported to .NET Core while others prefer a more principled approach with more background information. Instead of writing ...

.NET Core.NET FrameworkWPF
May 20, 2019
3
1

The F# development home on GitHub is now dotnet/fsharp

Phillip Carter
Phillip Carter

TL;DR We've moved the F# GitHub repository from microsoft/visualfsharp to dotnet/fsharp, as specified in the corresponding RFC. F# has a somewhat strange history in its name and brand. If we roll back the clocks to the year 2015, F# sort of had two identities. One side of this was Visual F#, or "VisualFSharp"; a product within Visual Studio ...

.NET.NET CoreVisual Studio
May 8, 2019
15
5

Introducing the new Microsoft.Data.SqlClient

Diego Vega
Diego Vega

This post was written by Vicky Harp, Program Manager on SqlClient and SQL Server Tools. Those of you who have been following .NET development closely have very likely seen Scott Hunter's latest blog post, .NET Core is the Future of .NET. The change in focus of .NET Framework towards stability and new feature development moving to .NET Core means SQ...

.NET.NET Core.NET Framework
May 8, 2019
51
0

Announcing Entity Framework 6.3 Preview with .NET Core Support

Diego Vega
Diego Vega

The first preview of the EF 6.3 runtime is now available in NuGet. Note that the package is versioned as 6.3.0-preview5. We plan to continue releasing previews of EF 6.3 every month in alignment with the .NET Core 3.0 previews, until we ship the final version. What is new in EF 6.3? While Entity Framework Core was built from the ground up to w...

Entity Framework.NET.NET Core
May 8, 2019
7
0

Introducing diagnostics improvements in .NET Core 3.0

Sourabh Shirhatti [MSFT]
Sourabh Shirhatti [MSFT]

In .NET Core 3.0, we are introducing a suite of tools that utilize new features in the .NET runtime that make it easier to diagnose and solve performance problems. These runtime features help you answer some common diagnostic questions you may have: Is my application healthy? Often times an application can slowly start leaking ...

.NET Core