RSS 2.0
 Sunday, November 01, 2009

How time flies! Last year I presented Modelling in VSTS Rosario with demos in CTP12. Since then Microsoft have moved on: The product is now called Visual Studio Team System 2010 and we are at Beta2 already.

For the past few weeks I have used my rare spare time to get to know the Beta2 release. I already liked Beta1 a lot and this is even better. Sure there is room for improvement, which you can express here, but I can advise both VS as well as TFS to anyone for production use.

My session is called “New in VSTS2010” and there is much more content such as Surface development, ASP.NET security and ADO.NET Entity Framework. If you want to get the guided tour around VSTS2010 make sure to attend Codecamp in Rotterdam on November 21st.

Hogeschool Rotterdam
Locatie Academieplein 
G.J. de Jonghweg 4 - 6
3015 GG Rotterdam

 

NovaCodeCamp

Sunday, November 01, 2009 8:24:47 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
Development | VSTS
 Monday, October 05, 2009

My first public appearance about Visual Studio Team System was with Dennis Mulder in June 2005. After a few more years of community exposure I received the MVP Team System reward, which I consider a great honor.

MVP_horizontal ShareTheVision

Back then the presentation was about source control in VSTS 2005. It is great to see the progress in VSTS 2008 that the discussion is now way beyond version control. And the story continues as the eminent VSTS 2010 Beta2 release will prove.

It is going to be a very promising year for VSTS. And it feels great to be a part of it.

PS: You can see my fellow MVPs here.

Monday, October 05, 2009 1:57:30 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
TFS | VSTS
 Wednesday, May 20, 2009

Here it is! Visual Studio Team System and Team Foundation Server 2010 Beta 1 as well as .NET Framework 4.0 Beta 1 have been released to the public. Soma made the announcement of the release to MSDN on Monday, but now all the goods are available to everyone too.

We have been involved in the Technical Adoption Program since early 2008 and it has been a great ride. Lots of good information has been tried and shared and earlier this year the TAP partners presented on VSTS 2010 during the APO Conference.

The VSTS installation experience is pretty straightforward: When you start the setup, select to install VSTS 2010.

01_vs2010

Click next.

02_vs2010

Accept the license agreement.

03_vs2010

Select the .NET Development Environment.

04_vs2010

Optionally click the Customize button to select components to install.

05_vs2010

Click Next to start the installation.

06_vs2010

The setup prompts to restart your machine after the .NET Frameworks have been installed. And so it does again after the installation is complete.

And then your favorite development environment is ready to be used! Select your environment settings.

08_vs2010

The new start page.

09_vs2010

And the new layout for project and file types.

 10_vs2010

13_vs2010

Oh, and I am sure you noticed the new user interface in Windows Presentation Foundation.

12_vs2010

Except for the startup performance I love every bit of it.

Now we are looking forward to using VSTS and TFS in a managed production environment.

Wednesday, May 20, 2009 8:27:43 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
Team Foundation Server | TFS | Visual Studio | VSTS
 Tuesday, February 17, 2009
APO

On March 13 there is an Application Platform Optimization conference in the Netherlands. Clemens, Marcel and I will talk about Visual Studio Team System 2010 in the development track on testing, architecture and work item tracking respectively. The other tracks are data management/business intelligence and SOA/business process. The conference day before will be focused on the same topics but is intended for managers and technical decision makers. Even though the agenda is not complete yet, it looks to be a promising event with presentations by:

  • Kevin Ashby - Enterprise Platform Modernization, Microsoft
  • Ofer Ashkenazi - Sr. Technical Product Manager, Microsoft
  • Sam Guckenheimer - Group Product Planner Visual Studio Team System, Microsoft

New versions of my favorite products are being released later this year: BizTalk 2009 and Visual Studio Team System 2010. Obviously I am very excited to see interesting Microsoft speakers make it to the conference. If you can not wait to learn more about Visual Studio Team System 2010 below are a few links where you can get to know the product a little more:

http://channel9.msdn.com/posts/VisualStudio/Visual-Studio-Team-System-2010-Week-on-Channel-9/ 
http://channel9.msdn.com/VisualStudio/
http://channel9.msdn.com/shows/10-4/

Later next month I am presenting at Software Developer Network event. That talk will be on the Application Architecture Guide 2.0 which I discussed in a recent post. logoSDN-new

Tuesday, February 17, 2009 10:29:23 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
ALM | TFS | VSTS
 Sunday, February 15, 2009
00_AppArch

Recently Microsoft Patterns & Practices released an updated version of the Application Architecture Guide. This guide is an invaluable source of information for anyone creating .NET applications. If you are looking for ways to structure your application, for challenges of specific application types or for non-functional requirements, you should read this document. Below is a fragment of the introduction: 

“The purpose of the Application Architecture Guide 2.0 is to improve your effectiveness when building applications on the Microsoft platform. The primary audience for this guide is solution architects and development leads. The guide provides design-level guidance for the architecture and design of applications built on the Microsoft .NET platform. It focuses on the most common types of applications and on partitioning application functionality into layers, components, and services, and also walks through their key design characteristics.”

The document consists of 387 pages, which may seem big. If there is just one thing you should take away from the guide, I would say it is the following diagram. It is the reference architecture of a general application that has layers for presentation, services, business and data logic. It also connects to data sources and other services and has cross-cutting concerns like security and operations.

05_RefArch

Immediately after the guide appeared Clemens wrote a great post about AppArch guide 2.0 and Visual Studio 2010. Since I realized that most are now working in Visual Studio 2008, I thought I would create some visuals in the current technology. So to start I created a new solution and added an Application Diagram that would contain all elements. Normally when designing top-down you create a conceptual design, which you can also do by adding a System Diagram as the conceptual design and for each of the elements on your conceptual design add other System Diagrams. The below image is what you end up with: A diagram in Visual Studio that contains all your layers of the above reference architecture.

02_ConceptDiag

In each of the system diagrams that represent the layers you can now add components from the reference architecture. For instance add service interfaces and message types to the services layer. For the presentation it could look like this.

03_PresLayer 

Normally you can not add Class Libraries to diagrams. To be able to use the red shape, you can use power tools for VSTS Architecture Edition, which were developed for Beta2 but they work fine in Visual Studio 2008 RTM and SP1.

When you are done your application diagram will look similar to this. I think this approach is great to create levels of abstraction: The diagram containing the layers describes how you separate layers and the application diagram shows the actual projects.

01_AppDiag_cut 06_Sln

When you right-click on the application diagram you can select “implement all applications”, which will generate projects and references for all items in the diagram. Your solution is now almost done. The one thing missing compared to the reference architecture is the cross-cutting concerns, for which you can use Enterprise Library. Enterprise Library is a great framework that takes care of plumbing for caching, data access, etc.  Just add EntLib, or your preferred framework, to your solution and you are ready to go. Remember, if you have any questions, check out the AppArch guide and the knowledge base.

Sunday, February 15, 2009 10:23:03 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
Development | VSTS
 Monday, September 29, 2008

Good news: Today Microsoft announced the next version of Visual Studio Team System, previously known as "Rosario", will be called VSTS 2010. Some good information can be found on in Somasegar's post and in the official press release. In short the message is that Application Lifecycle Management will be taken to the next level to better facilitate architects, testers and project managers, but also new audiences such as application maintenance people. I am sure you know that Microsoft are very open in developing new products and receiving feedback, so you can already enjoy an early "Rosario" build, which is downloadable as a VPC. A new version is expected shortly, which would make sense since the most interesting conferences of all is about to kick-off in 4 weeks...

Blog Bling 4

The Professional Developer Conference was last held in Los Angeles three years ago. Then Microsoft announced The LINQ Project, WinFX including workflow foundation and presentation foundation and the designer toolset we all know now as the Expression suite. This PDC is all about the cloud and Live, which sounds very promising.

Monday, September 29, 2008 6:24:13 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
ALM | Visual Studio | VSTS
 Tuesday, September 09, 2008

Last saturday the Dutch code camp was organized by three user groups. There was a good crowd and especially the number of MVPs was impressive. My talk was on Modeling In VSTS Rosario. I demonstrated the publicly available Rosario CTP12 VPC in which you can see the new Architecture Explorer and UML diagrams. We had good discussions about why things are implemented in a certain way and good feedback that will go back to the VSTS product teams through our regular Rosario TAP calls.

I asked the organization for a code camp logo to show on blogs, etc. The below image is great, except that our code camp was in the MIC in Barneveld and luckily no real camping was involved...

Tuesday, September 09, 2008 6:42:32 AM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
Development | VSTS
 Tuesday, April 15, 2008

Visual Studio Team System is Microsoft's solution for application lifecycle management. ALM helps software teams tremendously to ensure quality, predictability, etc. Microsoft released VSTS 2005 a few years ago and 2008 in November last year. Now development is underway for the next version of Visual Studio Team System codename "Rosario". You can find more information here http://msdn2.microsoft.com/en-us/vstudio/bb936702.aspx and you can even test-drive the latest bits http://blogs.msdn.com/jeffbe/archive/2008/04/11/april-rosario-ctp-now-available.aspx. If you do, please provide feedback through http://connect.microsoft.com/, which is one of the activities we do as part of the Rosario Technical Adoption Program. 

Rosario

Tuesday, April 15, 2008 6:57:27 PM (W. Europe Standard Time, UTC+01:00)  #    Comments [0] - Trackback
VSTS
 Saturday, December 22, 2007

Last month has seen a lot of releases following the launch of Visual Studio 2008 and Team System http://blogs.msdn.com/somasegar/archive/2007/11/19/visual-studio-2008-and-net-framework-3-5-shipped.aspx , http://blogs.msdn.com/jeffbe/archive/2007/11/19/visual-studio-team-system-2008-ships.aspx

The story around VS SDK and Domain Specific Languages toolkit http://blogs.msdn.com/stuart_kent/archive/2007/11/22/what-s-new-for-dsl-tools-in-vs2008-vs2008-sdk.aspx

VSTS Web Access has made access to TFS so much easier for non-technicians http://blogs.msdn.com/bharry/archive/2007/11/30/vsts-web-access-power-tool-for-team-system-2008-released.aspx

The ASP.NET extensions provide a Model-View-Controller framework and VS2008 Silverlight support amongst others http://weblogs.asp.net/scottgu/archive/2007/12/09/asp-net-3-5-extensions-ctp-preview-released.aspx

And finally today the upgraded power tools for Team Foundation Server have been released http://blogs.msdn.com/bharry/archive/2007/12/21/december-07-release-of-the-tfs-power-tools-for-tfs-2008-are-available.aspx

If you are building .NET 2.0 applications, you really should take a look at all of the above.

Saturday, December 22, 2007 4:47:25 AM (W. Europe Standard Time, UTC+01:00)  #    Comments [1] - Trackback
VSTS | TFS | Visual Studio | Team Foundation Server
Archive
<March 2010>
SunMonTueWedThuFriSat
28123456
78910111213
14151617181920
21222324252627
28293031123
45678910
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 2010
Pieter de Bruin
Sign In
Statistics
Total Posts: 128
This Year: 3
This Month: 1
This Week: 0
Comments: 78
Themes
Pick a theme:
All Content © 2010, Pieter de Bruin
DasBlog theme 'Business' created by Christoph De Baene (delarou)