-
Now this got me puzzled today for some time. I started up Visual Studio 2008 and opened a solution I had been working on for some time. But when trying to debug the application, it threw an error on Unity and the SerivceLocator trying to get an instance of a class. Not an interface, a class. It had no...
-
Since yesterday it’s possible to use ReSharper 4.5 beta in combination with StyleCop by using StyleCop for ReSharper. This post gives you some information on all the three tools that I use to write source code in Visual Studio 2008 for business solutions faster and deliver better maintainable source...
-
I got sick of manually attaching to the webserver (either aspnet_wp.exe on WinXP or w3wp.exe on Win2003 or later). You can have a macro for that, incl. a shortcut key. I got this from somewhere on the web, but forgot where. If I find out, I’ll of course post it here. But I constantly have to search my...
-
I regularly forget, after re-installing my desktop or laptop, what settings I had configured in Visual Studio. Today I was looking for another one and decided to blog about it, for a personal reference. More will probably come to my mind or I get some cool tips from others, so I’ll update this post whenever...
-
January 2009 the Microsoft SharePoint Product Group announced the Community Technology Preview of Visual Studio 2008 extensions for SharePoint v1.3 (VSeWSS). Previous VSeWSS versions were not out-of-the box installable on x64 machines, therefore I blogged about Installing Visual Studio Extensions for...
Posted to
Harold van de Kamp's Blog
by
Harold van de Kamp
on
Fri, Feb 20 2009
Filed under:
Filed under: Visual Studio 2008, SharePoint, IIS7, Community Technology Preview, SharePoint Development, x64, 64-bit, VSeWSS, SharePoint Deployment, Windows Communication Foundation
-
Finally there is a great snippet designer add-in for Visual Studio. The Snipped Designer for Visual Studio 2008 is available for free on CodePlex. I have used version 1.1 some time and it works great. The Snippet Designer features: A Snippet editor integrated inside of the IDE. Access it by opening...
-
Ramp Up is a new learning program on the MSDN website. About Ramp Up: Introduction Take the Next Step on Your Career Path Ramp Up is a free, online, community-based learning program, with a number of different tracks that will help you build your portfolio of professional development skills. Ramp Up...
-
Microsoft released the Windows Azure Tools for Microsoft Visual Studio October 2008 CTP, available at the Microsoft Download Center . The Windows Azure Software Development Kit October 2008 CTP is available also at Microsoft's Download Center . Although they have just released the Visual Studio 2010...
-
I’m doing some work with TypeMock and I start to love it more and more. For example, how about removing your database completely from your continuous tests? Sure you can do some database testing during the nightly build, but please keep the tests as fast as possible. A little story about a build Just...
-
A little snippet that I use from time to time when I need information on how long something takes. Type ‘sw’ (without the quotes) and tab-tab . Installation is easy, just create a file called “sw.snippet” in your %Documents%\Visual Studio 2008\Code Snippets folder and paste the following in the file...
-
This has taken us some time; depending on which environment you are, telling Visual Studio 2008 for Database Professionals Edition (or simply DataDude) what user it should use to deploy the SQL scripts, during an automated build. We're working with Windows XP users, Windows Vista users and Windows...
-
UPDATE : CopySourceAsHtml can be obtained from CodePlex . I was looking for CopySourceAsHtml for Visual Studio 2008, but for some reason it's not on the 'official' page so I had to search for it. There are multiple versions, but on Guy Burstein's blog there's more information and...
-
In Visual Studio 2008 you can right-click a project and choose for "Add service reference" to create a proxy class for your web service. WCF preferred, of course. But for some reason, the Visual Studio team disabled it when you're in debug mode. Something that used to work in Visual Studio...
-
When people want start learning about .NET in general or a specific subject like Silverlight or security, can be send to the "How Do I?" videos. I do this myself a lot of times, because a lot of videos aren't 60+ minutes. Just as a reminder to myself, the root url is this one .
-
David , Alex and me just needed to get a load of data from some Excel sheets and work with the data. What's better than to load the data into a DataSet using OleDB and process it using LINQ to DataSets? Make sure you know what the format of your columns is and that the first row in your sheet holds...