Showing results for Visual Studio 2010 - .NET Blog

Jun 16, 2009
Post comments count0
Post likes count0

Changes to the Publish dialog in web application project system in Visual Studio 2010

Web Development Tools Microsoft
Web Development Tools Microsoft

This blog explains some modification we made to the publish dialog in the web application project system, mainly to accommodate new web deployment tools from IIS team (aka “MsDeploy”). Changes are summarized as following: 1. Persist your publish settings through creating and managing publish profiles 2. Provide a “publish method” combo box for yo...

ASP.NET
Jun 6, 2009
Post comments count0
Post likes count0

Multi-targeting of web projects using Visual Studio 2010 Beta1

Web Development Tools Microsoft
Web Development Tools Microsoft

The multi-targeting feature of Visual Studio 2010 allows web developers to develop web applications targeting ASP.NET 2.0, 3.0, 3.5 and 4.0. The key benefit of multi-targeting is that you can use Visual Studio 2010 to create and develop new projects that target earlier versions of the .NET Framework (such as 2.0, 3.0 and 3.5). Multi-targeting in VS...

ASP.NET
Jun 5, 2009
Post comments count0
Post likes count0

Basic Microsoft Web Deployment Tool Setup For Visual Studio 2010

Web Development Tools Microsoft
Web Development Tools Microsoft

In this blog post I will explain how to get and install the Microsoft Web Deployment Tool, so you can share created packages with others and how to setup a Windows 2008 Server to allow packages to be deployed from Visual Studio 2010 Beta 1. Visual Studio 2010 Beta 1 ships with and installs Microsoft’s Web Deployment Tool as part of the Visual Web D...

ASP.NET
Jun 5, 2009
Post comments count0
Post likes count0

Deploying Silverlight Projects using VS10

Web Development Tools Microsoft
Web Development Tools Microsoft

With VS10 beta1 environment, you can also install Silverlight 3 beta to combine the power of both. When a Silverlight 3 beta project is compiled, it generates xap file.  The web application or website should take the xap as content for Build Action.  The following shows what the default Siliverlight project has: Having this informati...

ASP.NET
Jun 1, 2009
Post comments count0
Post likes count0

Free Web Hosting to try ASP.NET 4 Beta1, VS 2010 Beta1 and MS Web Deployment Tool RC1

Web Development Tools Microsoft
Web Development Tools Microsoft

Today we are announcing the availability of FREE HOSTING accounts for web developers to try out the new feature sets of Visual Studio 2010 Beta1, ASP.NET 4 Beta1 and Microsoft Web Deployment Tool (MsDeploy) RC1… VS 2010 has great set of features on deploying web applications seamlessly…   One of the key features is the ability to publish...

ASP.NET
May 26, 2009
Post comments count0
Post likes count0

Using Microsoft AJAX Control Toolkit with Visual Studio 10 Beta 1

Web Development Tools Microsoft
Web Development Tools Microsoft

In this post we will talk about the effects of a particular security enhancement in CLR 4.0 Beta 1 and how it affects working with AJAX Control Toolkit in Visual Studio 10 Beta 1 and possibly other 3-rd party assemblies. The security enhancement in question is the way CLR 4.0 treats assemblies that came from a remote source (e.g., downloaded from ...

ASP.NET
May 20, 2009
Post comments count2
Post likes count0

Samples for Parallel Programming with the .NET Framework 4

Stephen Toub - MSFT
Stephen Toub - MSFT

Along with the release of the .NET Framework 4 Beta 1, we've just published a slew of samples that demonstrate using Parallel Extensions in a variety of ways.  You can download these from Code Gallery at https://code.msdn.microsoft.com/ParExtSamples.These samples include raytracers, a sudoku game, an image colorization algorithm, solvers for t...

.NET Parallel Programming
May 20, 2009
Post comments count0
Post likes count0

.NET 4 MSDN documentation for parallelism

Stephen Toub - MSFT
Stephen Toub - MSFT

In addition to the Betas of Visual Studio 2010 and the .NET Framework 4 being available for download today, the MSDN documentation for .NET 4 Beta 1 is also available.  This includes quite a bit of useful information about the new parallelism constructs.  Here's a summary of the relevant material, with links: Related to this...

.NET Parallel Programming
May 20, 2009
Post comments count0
Post likes count0

Visual Studio 2010 and ASP.Net 4.0 (Beta1)

Web Development Tools Microsoft
Web Development Tools Microsoft

The public release of Visual Studio 2010 Beta 1 is now available and can be downloaded here. This is one of the most compelling updates to Visual Studio we’ve seen in years.  The entire IDE has been refreshed with a new look and all the code editors including the HTML and ASPX editors have replaced with a new extensible editor based on WPF....

ASP.NET
May 16, 2009
Post comments count0
Post likes count0

Debugging Support for Tasks

Daniel Moth
Daniel Moth

Visual Studio 2010 has new debugger windows to support the Task-based programming model. Check out my blog post about the Parallel Tasks window.

.NET Parallel Programming