Azure DevOps, Scrum, & .NET Software Leadership and Consulting Services

Free course! Predicting the Future, Estimating, and Running Your Projects with Flow Metrics

  • Run tests from your TFS Team Build without a test list (.vsmdi) with code coverage

    I got around to trying Buck Hodges’ power toy that lets you run unit tests in your Team Foundation Server (TFS) Team Build without having to use a test list (aka “.vsmdi” file).  It works well but getting code coverage to run with it was kind of a trick.  There’s a post on forums.microsoft.com that…

  • "MSBUILD : Publish Failed. Test Type not installed on the server for test type"

    Last week I stopped getting code coverage as part of the Team Build (aka TFS MSBuild) in my project.  I started digging in and found the following error popping up in my build output file: MSBUILD : warning : Publish Failed. Test Type not installed on the server for test type: “Microsoft.Samples.VisualStudio.TestTools.HostAdapters.VsIde.RunConfigData”. This error ate…

  • “MSBUILD : Publish Failed. Test Type not installed on the server for test type”

    Last week I stopped getting code coverage as part of the Team Build (aka TFS MSBuild) in my project.  I started digging in and found the following error popping up in my build output file: MSBUILD : warning : Publish Failed. Test Type not installed on the server for test type: “Microsoft.Samples.VisualStudio.TestTools.HostAdapters.VsIde.RunConfigData”. This error ate…

  • Making FlowLayoutPanel Scroll Using Arrow Keys, Page Up, Page Down

    How do you make the FlowLayoutPanel scroll using arrow keys, page up, page down?  I’ll start with the answers and work backwards: Subscribe to the PreviewKeyDown event and don’t forget to call control.PerformLayout(). Now the problem: If you haven’t checked out the NYTimes Reader application, you’re totally missing out.  It’s this fantastic .NET 3 / WPF…

  • Beantown.NET Meeting: Rob Daigneau – "Implementing SOA Design Patterns with .NET"

    The Beantown.NET User Group (INETA) is meeting on Thursday, 2/1/2007. http://www.beantowndotnet.org This month we have Rob Daigneau presenting “Implementing SOA Design Patterns with .NET”. As always, our meeting is open to everyone so bring your friends and co-workers.  If you want free pizza, send me an RSVP using the contact form (http://blog.benday.com/contact.aspx) by 1pm on…

  • Beantown.NET Meeting: Rob Daigneau – “Implementing SOA Design Patterns with .NET”

    The Beantown.NET User Group (INETA) is meeting on Thursday, 2/1/2007. http://www.beantowndotnet.org This month we have Rob Daigneau presenting “Implementing SOA Design Patterns with .NET”. As always, our meeting is open to everyone so bring your friends and co-workers.  If you want free pizza, send me an RSVP using the contact form (http://blog.benday.com/contact.aspx) by 1pm on…

  • VSTS DBPro Talk at Michael Ruminer's Team System User Group in Waltham

    Hey All, I’m going to be giving my Visual Studio Team Edition for Database Professionals overview talk at Michael Ruminer’s Team System User Group in Waltham. When: January 18, 2007, 5:30pm – 7:30pm Where: Microsoft New England Office201 Jones Rd.6th FloorRoom MPR-B Waltham, MA 02451 Be sure to RSVP here if you plan to attend.  BTW,…

  • VSTS DBPro Talk at Michael Ruminer’s Team System User Group in Waltham

    Hey All, I’m going to be giving my Visual Studio Team Edition for Database Professionals overview talk at Michael Ruminer’s Team System User Group in Waltham. When: January 18, 2007, 5:30pm – 7:30pm Where: Microsoft New England Office201 Jones Rd.6th FloorRoom MPR-B Waltham, MA 02451 Be sure to RSVP here if you plan to attend.  BTW,…

  • Tagged.

    There’s a “meme” running around the blogosphere called “5 things tag”.  I just found out about it today (cuz I’m not very cool) when I got tagged by Michael Ruminer and Ben Scheirman. Here are 5 things you might not know about me: My friends say that I do a pretty good George W. Bush impression…

  • Custom Installer Actions: Edit Connection Strings, IIS Directory Security Settings, etc.

    When I need to deliver a web application to a client, I create a Setup/Deployment Project and then send them the .MSI file.  This makes it super easy to make sure that all the dependencies are there and that the web directory gets set up in IIS.  It eliminates 80% of the deployment hassle.  The…