Showing results for July 2017 - .NET Blog

Jul 27, 2017
3
0

Introducing Support for Brotli Compression

Immo Landwerth
Immo Landwerth

This post was written by our software developer intern Denys Tsomenko, who worked on a Brotli compression library during his internship. Modern web-pages are getting larger and larger with huge CSS, HTML and JavaScript files. But the Internet connection isn't always good and pages can load slowly. Web pages also often contain other materials suc...

.NET
Jul 26, 2017
0
0

.NET Application Architecture Guidance

Cesar De la Torre
Cesar De la Torre

The .NET Team has been producing guidance for building microservices and container based applications, web applications and Xamarin.Forms mobile apps. You can use this guidance to help build your applications according to accepted industry patterns with .NET and C#. We have heard many requests for this guidance over the last year. We have recent...

.NET
Jul 26, 2017
0
0

The week in .NET – MIST, F# in NYC, and links

Bertrand Le Roy
Bertrand Le Roy

Previous posts: Package of the week: MIST The interface is essential to many applications such as Windows Forms or WPF data binding. Implementing it can however be fastidious, and involves quite a lot of boilerplate code. MIST simplifies this using IL weaving and a custom Visual Studio build task. With MIST, you can use simple auto-properties...

.NET
Jul 25, 2017
0
0

.NET Framework July 2017 Quality Update for WPF

Rich Lander [MSFT]
Rich Lander [MSFT]

You can now install the July 2017 Quality Update for WPF. It applies to multiple Windows versions. This update resolves known issue 4033488. It is recommended on machines that have installed the July 2017 Preview of Quality Rollup or the May 2017 Preview of Quality Rollup. Quality and Reliability This release contains the following quality and...

WPF.NET Framework
Jul 24, 2017
0
0

.NET Framework July 2017 Preview of Quality Rollup

Rich Lander [MSFT]
Rich Lander [MSFT]

You can now install the Preview of Quality Rollup for the .NET Framework, released July 18th, 2017. Preview of Quality Rollup releases are recommended for businesses that want to use and/or preview quality improvements as soon as they become available. These same quality improvements will typically be included in the following Security and Quality...

.NET
Jul 24, 2017
1
1

Get Started with F# as a C# developer

Phillip Carter
Phillip Carter

Get Started with F# as a C# developer One of our previous posts, Why You Should Use F#, listed a few reasons why F# is worth trying out today. In this post, we'll cover some of the basics you need to know to be successful. This post is intended for people who are coming from a C#, Java, or other object-oriented background. The concepts covered ...

.NETASP.NET.NET Core
Jul 21, 2017
1
0

What we’ve learned from .NET Core SDK Telemetry

Rich Lander [MSFT]
Rich Lander [MSFT]

Updated (2017/7/27) We are releasing .NET Core SDK usage data that has been collected by the .NET Core CLI. We have been using this data to determine the most common CLI scenarios, the distribution of operating systems and to answer other questions we've had, as described below. As an open source application platform that collects usage data via ...

.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, pron...

.NET
Jul 18, 2017
1
0

The week in .NET – Command Line Parser Library, .NET South East

Bertrand Le Roy
Bertrand Le Roy

Previous posts: Package of the week: Command Line Parser Library Command-line applications typically accept arguments and options, and expose a page describing them. Parsing those arguments and options is a repetitive task that .NET provides little help for out of the box, beyond the argument to . Giacomo Stelluti Scala's Command Line Parser...

.NET
Jul 13, 2017
4
0

Development time IIS support for ASP.NET Core Applications

Sourabh Shirhatti [MSFT]
Sourabh Shirhatti [MSFT]

With a recent update to Visual Studio 2017, we have added support for debugging ASP.NET Core applications against IIS. This blog post will walk you through enabling this feature and setting up your project to use this feature. Getting Started To get started: Enable IIS Before you can enable Development time IIS support in Visual St...

ASP.NETASP.NET Core