Showing results for ASP.NET vNext - .NET Blog

Jan 16, 2015
0
0

Making It Better: Updates for ASP.NET 5 in Visual Studio 2015 CTP 5

Jeffrey Fritz
Jeffrey Fritz

It's been about two months since we released the first beta of ASP.NET 5, and today we happy to announce that ASP.NET 5 Beta2 is available. For developers using Visual Studio, you'll find great new tools to support and enhance your development process.  All ASP.NET developers will be able to take advantage of a new runtime and many product qua...

ASP.NET
Jan 14, 2015
0
0

Running ASP.NET 5 applications in Linux Containers with Docker

Ahmet Alp Balkan (Microsoft Azure)
Ahmet Alp Balkan (Microsoft Azure)

As a part of our ASP.NET 5 cross-platform efforts, we are actively working on making applications written in ASP.NET 5 easy to deploy and ship on Linux and Mac OS X. A while ago, we have released the first official Docker image by Microsoft: the ASP.NET 5 Preview Docker Image. Docker is an open source project that makes it easier to run appli...

ASP.NET
Nov 24, 2014
0
0

Content negotiation in MVC 6 (or how can I just write JSON)

Yishai G_
Yishai G_

[Update] - We decided to make two significant changes starting with Beta3, we are to not include the XML formatter by default, as well as special treat browsers. The content below is still relevant up to MVC 6 Beta2.IntroIn this blog, I intend to provide a simplified how-things-work and how-to-change-the-behavior. It is not intended as a deep dive ...

ASP.NET
Nov 12, 2014
0
0

Announcing ASP.NET features in Visual Studio 2015 Preview and VS2013 Update 4

Xinyang Qiu
Xinyang Qiu

Today we released both Visual Studio 2015 Preview and VS2013 Update 4. The ASP.NET team provided many new features and updates to both the runtime and tooling in Visual Studio 2015 Preview, including: ASP.NET 5 Preview runtime This release of Visual Studio supports creating and developing ASP.NET 5 Preview applications. ASP.NET 5 Preview is...

ASP.NET
Oct 16, 2014
0
0

Microsoft Asp.Net MVC Security Update MS14-059 broke my build!

miguel
miguel

Microsoft just released a new security update to be automatically applied to machines configured to use Microsoft Update.  The security bulletin is available here: https://technet.microsoft.com/en-us/library/security/ms14-059Unfortunately, some ASP.NET MVC 3 and 4 VS projects can no longer build after the update is applied. These projects will...

ASP.NET
Oct 6, 2014
0
0

ASP.NET vNext in Visual Studio “14” CTP 4

Xinyang Qiu
Xinyang Qiu

Today we released updates for ASP.NET vNext in Visual Studio “14” CTP 4. This release includes the ASP.NET vNext runtime and tooling improvements as outlined below. ASP.NET vNext Runtime This CTP includes our alpha4 runtime packages for ASP.NET vNext. You can find details on the specific enhancements added and issues fixed in the publ...

ASP.NET
Aug 21, 2014
0
0

Command line scaffolding for ASP.NET vNext

Sayed Ibrahim Hashimi
Sayed Ibrahim Hashimi

In previous releases we have added support for scaffolding controllers/views based on project artifacts in both MVC and Web Forms projects. The technology used for those previous releases was tied to Visual Studio. With ASP.NET vNext one of our high level goals is to enable Visual Studio customers to work with non-Visual Studio users. So the most c...

ASP.NET
Aug 18, 2014
0
0

ASP.NET vNext in Visual Studio “14” CTP 3

Xinyang Qiu
Xinyang Qiu

Today we released various runtime and tooling updates for ASP.NET vNext in Visual Studio “14” CTP 3. We included all the features that were included in Visual Studio 2013 Update 3 in this release. This release also has ASP.NET vNext runtime and tooling improvements as outlined below. ASP.NET vNext Runtime This CTP includes our alpha3 ...

ASP.NET
Jul 8, 2014
0
0

ASP.NET vNext in Visual Studio “14” CTP 2

Xinyang Qiu
Xinyang Qiu

Today we released various runtime and tooling updates for ASP.NET vNext in the Visual Studio “14” CTP 2. This CTP includes our alpha2 runtime packages for ASP.NET vNext. You can find all the details on the specific enhancements added and issues fixed in the published release notes on GitHub.For information on how to get started with ASP...

ASP.NET
Jun 20, 2014
2
0

ASP.NET vNext Routing Overview

Mugdha Kulkarni (MSFT)
Mugdha Kulkarni (MSFT)

Introduction The ASP.NET Routing system is primarily responsible for two operations: A typical route definition is a string that contains a URL template to match, such as: "blog/{year}-{month}-{day}/{slug}" With the URL template, the route definition can also contain default values and constraints for parts of the URL. Thi...

ASP.NET