RSS 2.0
 Saturday, September 22, 2007

Microsoft has released a new version of VSTS Web Access Power tool. This release is a Community Technology Preview (CTP) of what will ultimately be the 2008 version of the VSTS Web Access Power Tool.

  • Built against the TFS 2008 object model - In previous versions of Web Access you had to install Team Explorer 2005 on any machine you were installing Web Access on. With this version, you will now be installing Team Explorer 2008 instead. In some future version, Microsoft hopes to remove the requirement to install any version of Team Explorer.
  • Custom control support - added support for web based work item custom controls and have included a folder of documentation and samples on how to create them.
  • Build queuing - added UI for the new TFS 2008 feature of build queuing. You can start new queued builds and view the build queue (in addition to the preexisting abilities - like viewing build details).
  • Localization support - added support for localizing the web interface. Microsoft will also be localizing text for the final 2008 Power Tool release.
  • Bug fixes & Performance improvements - Microsoft has received a number of reports and done more testing on the current version of the Power Tool, and has fixed everything thus far.

This release (and the final 2008 release) can be used with either a TFS 2005 or a TFS 2008 server.  In either case, you will need to install a TFS 2008 Team Explorer on the machine you install Web Access on. Since TFS 2005 did not support build queuing, that functionality will not be available when this and future versions of Web Access are used with a 2005 server.

 

You can download it here and read more about it at Brian Harry's blog posting.

Saturday, September 22, 2007 9:14:32 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [1] -
Microsoft | Team System | Visual Studio 2008
 Tuesday, September 18, 2007

Microsoft's Patterns & Practices group recently released the final version of the “Team Development with Team Foundation Server” Guide. This guide has been in beta for the last couple of months.

 

It shows you how to get the most out of Team Foundation Server to help improve the effectiveness of your team-based software development. Whether you are already using Team Foundation Server or adopting from scratch, you’ll find guidance and insights you can tailor for your specific scenarios. It's a collaborative effort between patterns & practices, Team System team members, and industry experts.

 

TFSGuide

 

Some quick facts:

  • 496 – Total number of pages
  • 18 – Total number of chapters in this guide
  • 11392 – Total number of downloads of the Beta version of this guide
  • 8 – Number of attempts to get the Adobe build to work to generate the guide in .pdf format
  • 60 – Number of external and MSFT contributors and reviewers

Download the guide from CodePlex.

Tuesday, September 18, 2007 9:33:42 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
Microsoft | Team System
 Thursday, August 30, 2007

Ah yes, late August, time to go back to school - even for us adult geeks.

Fortunately, David Starr has provided us an exhaustive list of must-read books, organized by developer, tester, project manager, and executives.

... nothing specifically on VSTS however. I'll have to bug him about that.

Thursday, August 30, 2007 8:12:04 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
Misc | Richard Hundhausen | Team System
 Monday, August 20, 2007

The great news just keeps on coming from Microsoft. After a flurry of Team System announcements and downloads recently, we have yet another set of Power Tools to play with.

These tools are designed specifically for the Visual Studio Team Edition for Software Architects and provide the following capabilities:

  • View class library projects on the Application Diagram (AD)
  • View references to class library projects as connections on the Application Diagram
  • Create class library projects from the Application Diagram
  • Create references to class library projects from the Application Diagram
  • Synchronize properties between class library projects and their representative applications on the Application Diagram
  • Create and use class library applications and references on the System Designer (SD)

Fantastic. We haven't seen much out of the Architect tools, except for the SDM SDK in quite some time. I'm looking forward to it.

Download the CTP here. Note: you will also need to download Visual Studio 2008 Beta 2.

If you have any feedback on these tools, please visit the Architecture & Design forum.

Monday, August 20, 2007 12:41:29 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
Richard Hundhausen | Team System | Visual Studio 2008
 Wednesday, August 08, 2007

Gert Drapers, the PM for Database Professionals announced that the first set of Power Tools should be released by the end of this week. With that in mind I wanted to blogging about some of the cool new features. Today's blog is on the new Regular Expression builder.

Regular Expression Builder.jpg

This allows you to choose your regular expression and and preview the result of the expression! Very cool. Here's a tip to add to the list of regular expressions:

Navigate to the AppData\Roaming Folder (this will be different depending on what O/S you're using - for Vista it's C:\Users\%Username%\AppData\Roaming) and you'll find a file called RegExHelperConfig.xml.

Add a new record (for example, to add something simple like area code) with the following:

<Record Key="21" DisplayName="Area Code" Regex="[0-9]{3}" />

You can also add a new element which shows up when you click the Insert Element button by inserting a record in the syntax element section of this same file. Then you can distribute this file to all of your developers and they'll have the updated contents!

I believe that at the end of september (I didn't get an exact date from Apress) a Second Edition of Pro Visual Studio 2005 Team System will be released with approximately 100 new pages of content devoted just to the Database Professionals Edition of Team System.

Wednesday, August 08, 2007 9:39:29 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [1] -
Team System | Visual Studio 2005
 Monday, August 06, 2007
NBusiness is an Entity Definition Language focused on the creation of business entities.  Basically, you use a construct called E# to build a code file, which is then 'compiled' into C#.  Basically, NBusiness acts as a domain specific language for the creation of business entities. 

Below is an example of some E# code.  It's still a bit stinted in the structure, but it 'feels' like English to me, much like an internal DSL in Ruby.  (Even node the TRIVIAL creation of security around roles near the bottom of the example.)

It seems people are really getting into the Domain Specific Language thing...  But not the way Microsoft seems to be going.  Microsoft seems to be focusing on the big, graphical DSL model.  It'll be nice when they get there, but meanwhile, they're being left in the dust by the folks just creating very clean, very fast DSLs for a particular domain.

Nicely done, guys!

family BeerBase.Business
{
    entity Address as EntityBase, EntityBaseCollection, EntityInfo, Scripts
    {
        field auto id int AddressId;
        field string Street1;
        field nullable string Street2;
        field string City;
        field string PostalCode;
        field int RegionId;
        
        relationship Kegbots with Kegbot on AddressId=AddressId as child;
        relationship Companies with Company on AddressId=AddressId as child;
        relationship Region with Region on RegionId=RegionId as parent;
        
        validate Street1 required;
        validate City required;
        validate PostalCode required;
        validate RegionId required;
        
        validate City minlength 2;
        validate Street1 maxlength 50;
        validate Street1 minlength 3;
        validate Street2 maxlength 50;
        validate City maxlength 50;
        validate PostalCode maxlength 16;
        validate PostalCode minlength 5;
        
        authorize allow * retrieve;
        authorize allow Administrators delete;
        authorize allow Administrators create;
        authorize allow Administrators update;
    }
}

Monday, August 06, 2007 9:23:36 AM (Pacific Daylight Time, UTC-07:00)  #    Comments [1] -
Misc | Software Tools
 Saturday, August 04, 2007
If you're involved in creating a social web site, please heed the lessons in The Del.icio.us Lesson, an excellent blog post by Bokardo.  I won't steal his thunder, so you'll want to go read it yourself.  But the teaser is...  He lists 4 solid things to think about when creating a new social networking site.  Things that Del.icio.us does exceedingly well, and the social sites that are failing do NOT do well.  Have a read!

Saturday, August 04, 2007 10:50:07 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -

Umbraco looks pretty amazing!  It may not have the following of Dot Net Nuke, but it looks to be a lot more open to web standards.  I've tried many times to really like DNN, but it just pains me that I don't have really clean CSS control over things.  I suppose it's because I haven't gotten my head around it fully, so I'm sure I'm missing something.  But don't tell me to use their non-standard (although open source) theming system.  That just doesn't sit right.

Anyway, back to Umbraco.  it appears to have support for web standards, full API, and a very extensible platform!  I haven't looked at it in too much detail, but at least its something new!  Something outside the standard DNN, Rainbow, Joomla, and Drupal CMS systems.

Once again, I'm no expert at any of these, but I'm always on the lookout!

Saturday, August 04, 2007 3:31:08 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [1] -
Misc | Personal Thoughts
Hey!  This is a neat little easter egg in dasBlog.  Whenever you type dasBlog it automatically inserts a hyperlink to the site.  I wonder if it works for das Blog and DasBlog, as well.

Saturday, August 04, 2007 3:21:10 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
Misc
Head to Vertigo and run the Family.Show demo of WPF and Silverlight.  It's a trivial download, and shows off some of the power of both technologies.  You can find it here.  You can also download the source at CodePlex!

Saturday, August 04, 2007 3:19:17 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
Misc
SharePoint features are an incredibly useful way to deploy chunks of functionality to web sites.  Although they can be difficult to grok at first, once you do, they make a lot of sense!  Scot Hillier, a very well known SharePoint expert has begun a CodePlex project titled SharePoint Features, which aims to provide some extra functionality to SharePoint.  He's kicked off the project by contributing some really cool stuff, including a Debugging Feature, a Log Viewer Feature, and a Theme Changer feature.  He's also got loads more up there!  Have a favorite feature you've built?  Contribute!

I haven't checked out what license they are released under, but they're worth checking out!

Saturday, August 04, 2007 2:34:28 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
SharePoint

Not only did Microsoft just recently post Beta 2 of Visual Studio 2008 (Orcas) a few days ago, but yesterday Microsoft made a CTP of the next generation of Visual Studio Team System (codename Rosario) available for download. Craziness ... which do I spend my time with? It's like having two mistresses to pick from.

Anyway, here are the details, if you want to start playing with Rosario: (keep in mind that it won't ship until some time [6,12,18?] months post Visual Studio 2008, so at least 2009):

Finally, and most important, provide feedback to the team using http://connect.microsoft.com.

Saturday, August 04, 2007 1:36:19 PM (Pacific Daylight Time, UTC-07:00)  #    Comments [0] -
Richard Hundhausen | Rosario | Team System
Navigation
Archive
<September 2007>
SunMonTueWedThuFriSat
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008
Accentient, Inc.
Sign In
Statistics
Total Posts: 343
This Year: 62
This Month: 0
This Week: 0
Comments: 350
Themes
Pick a theme:
All Content © 2008, Accentient, Inc.
DasBlog theme 'Business' created by Christoph De Baene (delarou)