Vitaly's WebLog
Software development, startups, marketing

Missing Immediate Window in VS2008

January 28, 2008
How to add Immediate window menu item back in Visual Studio 2008 [More]

How to make incremental DB update script in VS2008

January 20, 2008
One of the most tedious tasks in database-driven software development is to make database change scripts. In the latest release of Visual Studio there is new type of database projects that helps maintaining your database scripts significantly. From the first sight it seems that VS can generate only create scripts, which it places in /sql folder by default. Hopefully, it also can generate change script, although this feature not so easy to discover. [More]

.NET Framework Library Source Code now available

January 17, 2008
Scott Guhrie announced that source code of .NET Framework library is now available. You can drill down to code written by Microsoft when debugging your application in Visual Studio 2008 [More]

Handling Database easily with Visual Studio 2008

January 12, 2008
Visual Studio 2008 Team System contains new type of Database Projects that have many extremely useful features. Design-type validation, unit tests, refactoring and even more. You will find overview of these new functions in this post. [More]

Microsoft Sync Framework Support in Visual Studio 2008

January 5, 2008
How to add synchronization framework to your app in several mouse clicks in Visual Studio 2008. [More]

Extension Methods - Extension or Confusion?

January 4, 2008
Analysis of Extension Methods feature of C# 3.0. Providing ideas of possible use and guidelines to follow to avoid issues. [More]