Showing archive results for 2018

Mar 19, 2018
Post comments count0
Post likes count0

Announcing Preview 1 of ASP.NET MVC 5.2.5, Web API 5.2.5, and Web Pages 3.2.5

Daniel Roth

Today we released Preview 1 of ASP.NET MVC 5.2.5, Web API 5.2.5, and Web Pages 3.2.5 on NuGet. This is a patch release that contains only bug fixes. You can find the full list of bug fixes for this release in the release notes. To update an existing project to use this preview release run the following commands from the NuGet Package Manager Conso...

ASP.NET
Mar 8, 2018
Post comments count0
Post likes count0

.NET Framework 4.7.2 Developer Pack Early Access build 3056 is available!

Preeti Krishna - MSFT

Today, we are happy to share an Early Access build with the .NET Framework 4.7.2 Developer Pack. The .NET Framework 4.7.2 Developer Pack lets developers build applications that target the .NET Framework 4.7.2 by using Visual Studio 2017, Visual Studio 2015 or other IDEs. This is a single package that bundles the .NET Framework 4.7.2, the .NET 4.7.2...

.NET
Mar 6, 2018
Post comments count0
Post likes count0

F# language and tools update for Visual Studio 2017 version 15.6

Phillip Carter

With the release of Visual Studio 2017 version 15.6, we’re excited to share updates to the F# language and core library, F# tooling in Visual Studio, and infrastructure updates that concern OSS contributors. Let’s dive in! F# language and core library updates Some foundational changes for the F# language and core library have been made, in ad...

.NET.NET CoreVisual Studio
Mar 5, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Functional testing of MVC applications

Daniel Roth

For ASP.NET Core 2.1 we have created a new package, Microsoft.AspNetCore.Mvc.Testing, to help streamline in-memory end-to-end testing of MVC applications using . This package takes care of some of the typical pitfalls when trying to test MVC applications using TestServer. Create a test project To try out the new MVC test fixture, let'...

ASP.NETASP.NET Core
Mar 4, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: GDPR enhancements

Barry Dorrans

2018 sees the introduction of the General Data Protection Regulation, an EU framework to allow EU citizens to control, correct and delete their data, no matter where in the word it is held. In ASP.NET Core 2.1 Preview 1 we’ve added some features to the ASP.NET Core templates to allow you to meet some of your GDPR obligations, as well as a cookie “c...

ASP.NETASP.NET Core
Mar 2, 2018
Post comments count8
Post likes count0

ASP.NET Core 2.1.0-preview1: Introducing Identity UI as a library

Daniel Roth

ASP.NET Core has historically provided project templates with code for setting up ASP.NET Core Identity, which enables support for identity related features like user registration, login, account management, etc. While ASP.NET Core Identity handles the hard work of dealing with passwords, two-factor authentication, account confirmation, and other h...

ASP.NETASP.NET Core
Mar 1, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Razor UI in class libraries

Daniel Roth

One frequently requested scenario that ASP.NET Core 2.1 improves is building UI in reusable class libraries. With ASP.NET Core 2.1 you can package your Razor views and pages (.cshtml files) along with your controllers, page models, and data models in reusable class libraries that can be packaged and shared. Apps can then include pre-built UI compon...

ASP.NETASP.NET Core
Mar 1, 2018
Post comments count0
Post likes count0

NuGet Spring 2018 Roadmap

Anand Gaurav

In August 2017, we published the NuGet Fall 2017 Roadmap where we outlined our backlog for the upcoming quarter. Since then, we’ve published specifications for these experiences on GitHub for the community to review. You have provided a ton of great feedback that has helped us ensure we deliver the right experiences. Thank you for your continued in...

NuGetRoadmap
Feb 28, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1.0-preview1: Improvements to IIS hosting

Sourabh Shirhatti [MSFT]

The ASP.NET Core Module (ANCM) is a global IIS module that has been responsible for proxying requests over from IIS to your backend ASP.NET Core application running Kestrel. Since 2.0 we have been hard at work to bring to two major improvements to ANCM: version agility and performance. Note, that in the 2.1.0-preview1 release,...

ASP.NETASP.NET Core
Feb 28, 2018
Post comments count0
Post likes count0

ASP.NET Core 2.1-preview1: Introducing HTTPClient factory

Glenn Condron

HttpClient factory is an opinionated factory for creating HttpClient instances to be used in your applications. It is designed to: 1. Provide a central location for naming and configuring logical HttpClients. For example, you may configure a client that is pre-configured to access the github API. 2. Codify the concept of outgoing middleware via ...

ASP.NETASP.NET Core