Showing results for February 2010 - Page 2 of 2 - .NET Blog

Feb 10, 2010
Post comments count0
Post likes count0

Visual Studio 2010 RC public download available now!

Web Development Tools Microsoft
Web Development Tools Microsoft

It’s finally here.  Visual Studio 2010 and .Net 4.0 release candidate is available for everyone to download now.To download the public RC of Visual Studio 2010 go the RC landing page:  Since the beta we’ve been focused on performance improvements, reducing memory requirements, increasing stability and fixing customer reported ...

ASP.NET
Feb 10, 2010
Post comments count0
Post likes count0

“Parallelism in .NET” Series by Reed Copsey, Jr.

Igor Ostrovsky - MSFT
Igor Ostrovsky - MSFT

Reed Copsey, Jr. has been writing a great series of articles on parallelism with the .NET Framework 4. The articles provide the insights of an expert developer who has been using parallelism with .NET to speed up real-world programs. Recommended reading.Parallelism in .NETIntroductionPart 1, Decomposition Par...

.NET Parallel Programming
Feb 9, 2010
Post comments count0
Post likes count0

How to extend target file to include registry settings for web project package

Web Development Tools Microsoft
Web Development Tools Microsoft

Web project package and deployment targets files are written with extensibility in mind.  User can easily extend a property to include more functionalities in their package by using msbuild targets and properties.  If we check the Microsoft.Web.Publishing.targets file under “%Program Files%MSBuildMicrosoftVisualStudiov10.0Web”, we can s...

ASP.NET
Feb 9, 2010
Post comments count0
Post likes count0

Visual Studio 2010 RC Feedback Channel for Web Tools

Web Development Tools Microsoft
Web Development Tools Microsoft

As you probably heard the Visual Studio 2010 RC is currently available for MSDN subscribers! You can download it from here http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx. General public release is slated for Wed.The Web Development Tools Team has setup a DL that we would like you to use to send us direct feedback on anything web development ...

ASP.NET
Feb 9, 2010
Post comments count0
Post likes count0

Maintaining a Consistent Application State with TPL

Zlatko Michailov - MSFT
Zlatko Michailov - MSFT

The aim of this post is to help developers writing applications in which operations may need to be performed and then later undone due to a subsequent failure. It shows a pattern for how to maintain such a consistent application state by utilizing functionality from the Task Parallel Library (TPL) in the .NET Framework 4. For the purposes of this ...

.NET Parallel Programming
Feb 8, 2010
Post comments count0
Post likes count0

VSDoc for jQuery 1.4.1 Now Available

Web Development Tools Microsoft
Web Development Tools Microsoft

We finished generating a new VSDoc for the latest update of jQuery.  You can download it from the jQuery Downloads page.  A refresher on how to use the file can be found here or here.  Happy coding!Jeff KingProgram ManagerVisual Studio Web Tools

ASP.NET
Feb 8, 2010
Post comments count0
Post likes count0

Using Parallel Extensions for .NET 4 in ASP.NET apps

poojanagpal
poojanagpal

ASP.NET applications already get a lot of concurrency for free. The .NET Framework load balances incoming requests among ThreadPool worker threads, striving for optimal use of available CPUs. As long as you minimize blocking in your ASP.NET page code, ASP.NET will process requests concurrently. In most cases, and in particular for Web applications ...

.NET Parallel Programming
Feb 8, 2010
Post comments count0
Post likes count0

Gallery of Processor Cache Effects

Stephen Toub - MSFT
Stephen Toub - MSFT

Igor Ostrovsky is a developer on the Parallel Extensions team.  On his blog, he's documented a great set of examples for how caches can affect application performance; this is important to think through when writing parallel applications, but as Igor demonstrates, it applies equally to serial applications.  Check out his post.

.NET Parallel Programming
Feb 7, 2010
Post comments count0
Post likes count0

Are you using Parallel Extensions? We’d love to know.

Stephen Toub - MSFT
Stephen Toub - MSFT

Are you using Parallel LINQ (PLINQ), the Task Parallel Library (TPL), or any of the new coordination and synchronization primitives in .NET 4 (or in the Parallel Extensions June 2008 CTP or with the recent Reactive Extensions release)?  Are you planning to use or are you already using this support in a production application or libra...

.NET Parallel Programming
Feb 4, 2010
Post comments count0
Post likes count0

DryadLinq now available also for non-academic use

Massimo Mascaro
Massimo Mascaro

Several months ago, Microsoft announced for academic customers the availability of DryadLINQ.  DryadLINQ is a LINQ provider developed by Microsoft Research that enables  .NET developers to use the LINQ programming model for writing distributed queries and computations against a cluster of computers using Windows HPC Server. DryadLINQ enab...

.NET Parallel Programming