Wednesday 26 November 2008

Microsoft® Visual Studio Team System 2008 Database Edition now supports SQL Server 2008

Microsoft has posted the RTM of the update to Microsoft® Visual Studio Team System 2008 Database Edition to enable support for SQL Server 2008. One of the main features is a SQL Server 2008 Projects type in Visual Studio:

http://www.microsoft.com/downloads/details.aspx?familyid=bb3ad767-5f69-4db9-b1c9-8f55759846ed&displaylang=en

Remember, "Datadude" is free for people with a license for Microsoft® Visual Studio Team System 2008 Developer Edition:

http://callumhibbert.blogspot.com/2008/10/visual-studio-team-system-developer.html

Tuesday 25 November 2008

Windows Server 2008 Core will support managed code

I posted a while ago the surprisong news that Windows Server 2008 Core would not support managed code: http://callumhibbert.blogspot.com/2008/04/windows-2008-server-core-does-not.html

Seems like Microsoft have changed their mind and the Core install will support ASP.NET and a "subset" of .NET 2.0, 30 and 3.5 when SP2 arrives.

Thursday 6 November 2008

DebugView and Windows Server 2008

DebugView is a great tool for development. It will provide a live feed of messages output to the Debug listener. If you make a call to System.Diagnostics.Debug.WriteLine() then that message will appear in the DebugView console. Very useful for development, even more so when working with server products like BizTalk or SharePoint. You can insert Debug.WriteLine() statements into your code and monitor the behaviour of your application in real time.

One added bonus is that calls to System.Diagnostics.Debug.WriteLine() are not included in the Release build of your assemblies so you're not peppering your code with statements you don't want running in production.

I've used this tool for a long time but I've discovered on Windows Server 2008 you need to run it with Elevated Privileges to be able to capture events from the Kernel and Win32. You need these enabled (under the "Capture" menu) so catch messages from applications hosted in IIS etc.

About Me