This is particularly helpful when you want to copy colour settings / Visual Studio theme from one machine to another or across different versions of VS you have (say at your laptop and some customer’s PC)
Simply get the VS2010 import file, right click, open with, choose a program, and pick any simple editor, say Notepad

Yeah, you got it, what you need is to change:
<UserSettings>
<ApplicationIdentity version="10.0"/>
To
<UserSettings>
<ApplicationIdentity version="9.0"/>
Now you can use that in VS2008 Without any problem…
Permanent link to this post (174 words, 3 images, estimated 42 secs reading time)
Visual Studio, Visual Studio 2008 (Orcas), Visual Studio 2010, Visual Studio Themes
Intro…
Last week I had to re-install Windows. I haven’t done it in a while, so, had to remember all those “1 time” tips I do after reinstall. For example, downloading SQL Server Developer Edition before Visual Studio to get the full Management Studio. Another example, setting Visual Studio to pin to the Start menu, and configuring it for UAC.
The Problem
In the very first year of Windows 7, I used to have many problems with UAC on and always disabled it, later, things started to get better and it became my normal config to leave it on. One problem that remained is that if you have a program set to always “Run AS Administrator”, if this program has associated files (can open files with certain extensions if you click the files), you no longer can open those files directly.
So, like many, I do pin visual studio to the Start menu

I also need to set it to “Run As Administrator” in so many times (for stuff with built-in IIS, not much is on IIS Express).
I right click the shortcut, go to “Compatibility” tab, and check “Run this program as an administrator”.
Read the full post ... (551 words, 6 images, estimated 2:12 mins reading time)
Office Productivity, Visual Studio, Visual Studio 2008 (Orcas), Visual Studio 2010
Very Quick Note: Visual Studio 2008 Service Pack 1 was released finally (in combination with .NET Framework 3.5 Service Pack 1 of course).
To sum up for some people, note that VS 2008 SP1 includes ADO.NET Entity framework (and its designer) as well as ADO.NET Data Services, but NOT ASP.NEt MVC framework (but does include ASP.NET Dynamic Data & ASP.NET AJAX history control and script combining). It also includes some WCF enhancements as well as major VS performance and scalability fixes.
P.S.
SQL Server 2008 also was released earlier last week.
See official page for SQL Server 2008: http://www.microsoft.com/sqlserver/2008/en/us/default.aspx
Technorati Tags:
VS,
VS 2008,
isual Studio,
Service Pack,
SP,
SP1,
.NET,
.NEt 3.5,
.NET3.5,
netfx3.5,
Visual Studio 2008 Service PAck 1,
Visual Studio 2008 SP1
Permanent link to this post (159 words, 2 images, estimated 38 secs reading time)
.NET, SQL Server, Visual Studio, Visual Studio 2008 (Orcas)
Background (skip if you know Web Application Projects)
In VS 2002/2003, the web project model for a website was similar to “class library” projects, where you have a .CSPROJ or .VBPROJ file that keeps track of files “included” in the project, and compiles all the pages and controls code behind to a single assembly under “bin”. Each page/control has an automatically generated .DESIGNER.CS or .DESIGNER.VB file, which contains objects mapping to the server controls in the page/control markup (the generation of those files was not always in synch with markup, and that was problematic).
With VS 2005, there was a new “website” model for web projects that compiles each page/control individually as a separate assembly (or each folder, depending on optimization features), and applies this to all files in a given directory and its sub folders. This was a total mess in most “real world” projects, as VS takes so long to build the entire website, and even at deployment, you get sometimes many problems when you have pages that “reference” other pages/controls when IIS it trying to dynamically load the right assemblies to reference, and many other problems.
Read the full post ... (1295 words, 2 images, estimated 5:11 mins reading time)
.NET, .NET FAQ, ASP.NET, ASP.NET 2.0, Visual Studio, Visual Studio 2008 (Orcas)