Showing archive results for 2012

Mar 20, 2012
Post comments count0
Post likes count0

Improving Launch Performance for Your Desktop Applications

Brandon Bray

Application performance is something we hear about all the time. It almost always falls into one of the top three issues when we aggregate all of the feedback channels from .NET developers. While performance has many characteristics, application startup time is something that everyone can easily relate to. With the .NET Framework 4.5 Beta and the “...

.NET
Mar 15, 2012
Post comments count0
Post likes count0

VS11 Beta JavaScript Feature comparison with VS2010sp1

Web Development Tools Microsoft

In Visual Studio 11 Beta, we have exciting JavaScript editing features for the developers. Last year, we blogged “JavaScript Web development differences between Visual Studio 11 Developer preview and Visual Studio 2010”. Here are the differences between Visual Studio 11 Beta and Visual Studio 2010. IntelliSense   XML Document ...

ASP.NET
Mar 14, 2012
Post comments count0
Post likes count1

Is it ok to use nested Parallel.For loops?

Stephen Toub - MSFT

Every now and then, I get this question: “is it ok to use nested Parallel.For loops?” The short answer is “yes.”  As is often the case, the longer answer is, well, longer. Typically when folks ask this question, they’re concerned about one of two things.  First, they’re concerned that each nested loop will assume it “owns the machine” and will thu...

.NET Parallel Programming
Mar 14, 2012
Post comments count0
Post likes count0

The NuGet Gallery Outage on March 9th

The NuGet Team

The NuGet Gallery was unavailable on March 9th from approximately midnight until 7:52 A.M., nearly eight hours. During this time all HTTP requests to the gallery website failed. In addition to affecting website users, the outage affected all NuGet client programs (such as the Visual Studio extension and nuget.exe) and other software that relies on ...

NuGetIncident
Mar 13, 2012
Post comments count0
Post likes count0

Introducing the NuGet Team Blog

The NuGet Team

For the last few months, the NuGet team has been considering starting a proper, official blog. This is that blog. How do we plan to use this blog? Here are a few ways we know we'll use it (and I'm sure we'll think of others as we go along): Feel free to leave us a comment, letting us know what else you'd like to see here.

NuGetOther announcements
Mar 12, 2012
Post comments count0
Post likes count0

Visual Studio 11 Beta HTML/CSS editor features

Web Development Tools Microsoft

Visual Studio 11 Beta has some more improvement in HTML and CSS editors over the Developer Preview time. You can see the major feature descriptions through www.asp.net/vnext .  In this channel9 video, Mads Kristensen demonstrated a few great HTML/CSS editor features in VS11 Beta (The video also demos Page inspector features by Jorge Gabuardi, ...

ASP.NET
Mar 7, 2012
Post comments count0
Post likes count0

Optimizing the .NET Framework Deployment Experience for Users and Developers

Brandon Bray

Rapid development has been one of the enduring themes behind the design of the .NET Framework. We know that authoring application installers is particularly difficult and could be improved. The following post is by Richard Lander from the program management team on the Common Language Runtime. He explains our motivations for introducing a new mod...

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

Visual Studio 11 Beta Razor editor issue workaround

Web Development Tools Microsoft

We found Visual Studio 11 Beta hits a crash bug when editing a Razor page (cshtml/vbhtml) in a MVC4 project or a Razor2 Website if the indenting option for the HTML editor is set to Block instead of Smart. The workaround is to go to Tools->Options->Text Editor->HTML->Tab and change the indenting option to Smart.HTML smart indenting is a...

ASP.NET
Mar 6, 2012
Post comments count0
Post likes count0

Are you using TPL Dataflow? We’d love to know!

Stephen Toub - MSFT

Are you using the new System.Threading.Tasks.Dataflow.dll library, either from its CTPs or from the .NET 4.5 Developer Preview or Beta?  We'd love to hear about it, and if you have time, what your experiences have been (good or bad).  What kind of solution are you building, and how are you using TPL Dataflow in it?  Has the library h...

.NET Parallel Programming
Mar 5, 2012
Post comments count2
Post likes count2

Implementing a simple ForEachAsync, part 2

Stephen Toub - MSFT

After my previous post, I received several emails and comments from folks asking why I chose to implement ForEachAsync the way I did.  My goal with that post wasn’t to prescribe a particular approach to iteration, but rather to answer a question I’d received… obviously, however, I didn’t provide enough background. Let ...

.NET Parallel Programming