Showing results for May 2010 - .NET Blog

May 26, 2010
Post comments count0
Post likes count0

Visual Studio 2010 Web Deployment Projects RTW – Available Now

Web Development Tools Microsoft
Web Development Tools Microsoft

We are pleased to announce that the RTW version of Web Deployment Projects for Visual Studio 2010 is now available for download. If you’ve been using Web Deployment Projects in Visual Studio 2008 or 2005, you can upgrade to VS 2010 without hesitation with the availability of Visual Studio 2010 Web Deployment Projects RTW (for Visual Studio Pr...

ASP.NET
May 25, 2010
Post comments count0
Post likes count0

Lesser-known Multi-threaded Debugging Support in Visual Studio 2010

Stephen Toub - MSFT
Stephen Toub - MSFT

We’ve been very excited about the new debugging windows in Visual Studio 2010, namely Parallel Tasks and Parallel Stacks, as well as the newly revamped Threads window, and thus we’ve talked about them quite a bit. For an overview, you can read the MSDN Magazine article at https://msdn.microsoft.com/en-us/magazine/ee410778.aspx, and Daniel Moth has ...

.NET Parallel Programming
May 24, 2010
Post comments count0
Post likes count1

Why is TaskContinuationsOptions.ExecuteSynchronously opt-in?

Stephen Toub - MSFT
Stephen Toub - MSFT

For a relatively advanced feature, I've been surprised how often this question has come up recently. When a task completes, its continuations become available for execution, and by default, a continuation will be scheduled for execution rather than executed immediately.  This means that the continuation has to be queued to the scheduler a...

.NET Parallel Programming
May 16, 2010
Post comments count0
Post likes count0

Blog Platform Upgrades Happening this Week

Stephen Toub - MSFT
Stephen Toub - MSFT

Dear Parallel Computing Enthusiasts, This week, Microsoft is rolling out a platform update to all blogs on the http://blogs.msdn.com site, including this one.  Comments on this blog will be disabled at approximately 9pm PST tonight and will be off until mid-day on the 24th.  We also do not expect to publish any new blog posts during this ...

.NET Parallel Programming
May 14, 2010
Post comments count0
Post likes count0

The Aspnet Compiler Build Task in Visual Studio 2010 ASP.Net MVC 2 Projects

Web Development Tools Microsoft
Web Development Tools Microsoft

If you crack open the project file in an ASP.Net MVC 2 application (in notepad or unload your project and then click “Edit *.proj”), you will notice an interesting line. <MvcBuildViews>false</MvcBuildViews> This is an option to enable a post build task that will run the Asp_net compiler. This command will compile your aspx ...

ASP.NET
May 12, 2010
Post comments count0
Post likes count0

Silverlight Tips of the Day Update

Web Development Tools Microsoft
Web Development Tools Microsoft

If you are interested in Silverlight 4 based Tips of the Day head over to my new Silverlight blog!So far I have over 20 postings as follows: Thank you, --MikeBlog Site: http://www.michaelsnow.com

ASP.NET
May 7, 2010
Post comments count0
Post likes count0

CLR Inside Out – Production Diagnostics Improvements in CLR 4

CLR Team
CLR Team

  The new installment of the “CLR Inside Out” column in MSDN Magazine is now available on line.  This month we have an article from Jon Langdon on Production Diagnostics Improvements in CLR 4.  This article talks about some of the new diagnostics features we added in .NET Framework 4 and focuses on how they enable to...

.NET
May 6, 2010
Post comments count0
Post likes count0

Another Error Creating Control in the Design View with Object Reference Not Set in Visual Studio 2010

Web Development Tools Microsoft
Web Development Tools Microsoft

In a previous blog, Controls State: "Error Creating Control" in the Design View in Visual Studio 2010, I have discussed about an Error Creating Control issue related to accessing the Session state in the OnInit() method. Since then, I have discovered that the Error Creating Control will also show in the design view if we try to access any...

ASP.NET
May 5, 2010
Post comments count0
Post likes count0

Hosting for ASP.NET 4.0 & Web Deploy from ORCS Web, DiscountASP, and MaximumASP

Web Development Tools Microsoft
Web Development Tools Microsoft

Visual Web Developer 2010 Express offers a great set of features for deploying web applications seamlessly.  One of the key features is the ability to publish your web application from VS 2010 to a remote hosted web server along with its dependencies like SQL Server database using “Web One Click Publish”.  VS 2010 integrates M...

ASP.NET
May 4, 2010
Post comments count0
Post likes count0

ParallelExtensionsExtras Tour – #16 – Async Tasks for WebClient, SmtpClient, and Ping

Stephen Toub - MSFT
Stephen Toub - MSFT

(The full set of ParallelExtensionsExtras Tour posts is available here.) The Task Parallel Library isn’t just about CPU-bound operations.  The Task class is a great representation for any asynchronous operation, even those implemented purely as asynchronous I/O.Task’s ability to represent arbitrary asynchronous operations without...

.NET Parallel Programming