Showing results for September 2013 - .NET Blog

Sep 30, 2013
Post comments count0
Post likes count0

OWIN Middleware in the IIS integrated pipeline & StageMarkers

.NET Team
.NET Team

Although OWIN middleware components are primarily designed to run on an OWIN pipeline, it can run on IIS as well. Similar to how HttpModules can subscribe to a specific IIS integrated pipeline event, an OWIN middleware can be subscribed to run at a specific IIS integrated pipeline event. Check out OWIN Middleware in the IIS integrated pipeline to k...

ASP.NET
Sep 30, 2013
Post comments count0
Post likes count1

RyuJIT: The next-generation JIT compiler for .NET

.NET Team
.NET Team

This post introduces the .NET team’s new 64-bit Just-In-Time (JIT) compiler. It was written by Andrew Pardoe, PM Manager for the CLR Runtime PM team. The world is moving to 64-bit computing even though it isn’t always faster or more efficient than 32-bit. A lot of programs run faster on 32-bit than on 64-bit, for a variety of reasons. One exa...

.NET
Sep 30, 2013
Post comments count0
Post likes count0

HTML Editing Features in Visual Studio 2013 RC

VKichline
VKichline

Several interesting features have been added to the new HTML editor in Visual Studio 2013 RC since the VS 2013 Preview release. See HTML Editing Features in Visual Studio 2013 Preview for a rundown of the Preview features. CSS Class and ID IntelliSense In the Preview release, the new HTML editor did not implement CSS Class IntelliSense, meaning t...

ASP.NET
Sep 25, 2013
Post comments count0
Post likes count0

Immutable collections ready for prime time

Immo Landwerth
Immo Landwerth

Today I’m very happy to announce that we released the stable version of the Microsoft.Bcl.Immutable NuGet package. We also published the MSDN documentation on immutable collections. Thank you! Nine months ago, we shipped the first preview of immutable collections. This was one of the first BCL features that we decided to ship early and often by r...

.NET
Sep 23, 2013
Post comments count0
Post likes count0

Attribute Routing changes for ASP.NET Web Stack shipped in VS2013 RC

Xinyang Qiu
Xinyang Qiu

For the VS2013 Preview release, we published two articles about Attribute Routing for Web API 2: · http://www.asp.net/web-api/overview/web-api-routing-and-actions/attribute-routing-in-web-api-2 · http://www.asp.net/web-api/overview/web-api-routing-and-actions/create-a-rest-api-with-attribute-routing The VS2013 RC release includes more chan...

ASP.NET
Sep 22, 2013
Post comments count0
Post likes count0

Web Publish how to automate multi-project publish with file system

Sayed Ibrahim Hashimi
Sayed Ibrahim Hashimi

The other day I received an email from a customer with a question which I’ve summarized as below. I have a solution containing multiple web projects. One of the projects, _RootSite, is the top level website which I want to publish. It’s an MVC project. I also have other web projects in the same solution. These other projects are apps themselves...

ASP.NET
Sep 21, 2013
Post comments count0
Post likes count0

Organizational Accounts in Visual Studio 2013 RC

bchauhan
bchauhan

Visual Studio 2013 Preview shipped with support to create new ASP.NET projects that can be easily configured with organizational accounts. This support has been simplified and enhanced in this RC version. You can find a detailed step-by-step tutorial on creating an ASP.NET MVC project with single organizational identity at Developing ASP.NET Apps w...

ASP.NET
Sep 20, 2013
Post comments count0
Post likes count0

Understanding Security Features in the SPA Template for VS2013 RC

Hongye Sun - MSFT
Hongye Sun - MSFT

The blog is based on Visual Studio 2013 RC release. We have completely rewritten the SPA template from the previous version( MVC 4). Here are some of the changes we made: Note that SPA VB template is still not available in this RC release. We will ship it with RTM release. In this blog, I will focus on the security ...

ASP.NET
Sep 20, 2013
Post comments count0
Post likes count0

How to use XDT in NuGet – Examples and Facts

Dan Liu
Dan Liu

Starting with NuGet 2.6, XML-Document-Transform (XDT) is supported to transform XML files inside a project. The XDT syntax can be utilized in the .install.xdt and .uninstall.xdt file(s) under the package's Content folder, which will be applied during package installation and uninstallation time, respectively. One of XDT’s greatest strengths is its...

NuGetInsights
Sep 18, 2013
Post comments count0
Post likes count0

Scaffolding asynchronous MVC and Web API controllers for Entity Framework 6

Xueyuan Dai
Xueyuan Dai

Brief Entity Framework 6 introduces support for the .NET 4.5 asynchronous programming pattern using the async and await keywords. And in Visual Studio 2013 RC we’re making it easier for you to take advantage of this new capability by optionally generating asynchronous code when you scaffold MVC and Web API controllers. Why First thing...

ASP.NET