Showing archive results for February 2015

Feb 8, 2015
Post comments count0
Post likes count0

Introducing the Visual Studio 2015 Extension for ASP.NET Project Templates

pranav rastogi
pranav rastogi

In Visual Studio 2013, there were a handful of templates that supported developing ASP.NET projects with various frameworks and data structures.  Some of those project templates from the Visual Studio 2012 era have been removed from the Visual Studio 2015 install and added to the Visual Studio Extension gallery as the ASP.NET Project Templates...

ASP.NET
Feb 6, 2015
Post comments count0
Post likes count0

Debugging ASP.NET 5 framework code using Visual Studio 2015

Victor Hurdugaci
Victor Hurdugaci

In the previous versions of ASP.NET it was possible to debug certain parts of the framework stack but setting up the development environment and compiling all the binaries was not the easiest task. ASP.NET 5 changes that and makes debugging framework code as easy as debugging your own application. This article shows how to debug into the ASP.NET 5 ...

ASP.NET
Feb 3, 2015
Post comments count0
Post likes count0

CoreCLR is now Open Source

.NET Team
.NET Team

We’re excited to announce that CoreCLR is now open source on GitHub. CoreCLR is the .NET execution engine in .NET Core, performing functions such as garbage collection and compilation to machine code. .NET Core is a modular implementation of .NET that can be used as the base stack for a wide variety of scenarios, today scaling from console utilitie...

.NET
Feb 3, 2015
Post comments count0
Post likes count0

Package Signing

Karan Nandwani
Karan Nandwani

Package signing has been a major discussion point for a long time in the NuGet ecosystem. However, the NuGet Team didn't want to rush into an implementation and end up creating something that restricted the ecosystem unnecessarily. Well, we now think we are ready to begin a process to introduce Package Signing, and we want to share our plans with t...

NuGetSecurity
Feb 2, 2015
Post comments count0
Post likes count2

New Task APIs in .NET 4.6

Stephen Toub - MSFT
Stephen Toub - MSFT

There are several nice API-level enhancements to the Task Parallel Library in .NET 4.6, which you can grab a preview of as part of the Visual Studio 2015 CTP. Task.From* .NET 4.5 had a Task.FromResult method.  This method makes it quick and easy to manufacture a new Task for a known result value, and is particularly useful when implementing a Tas...

.NET Parallel Programming