Maor's Blog
Talking about technology
Browse by Tags
All Tags
»
Team Build 2008
(
RSS
)
.NET 3.0
.NET 3.5
AJAX
ASP.NET 3.5
C#
Code Analysis
Data Dude
Lambda Expressions
Lectures
LINQ
MSBuild
Opinion
Silverlight
Team Build
Team System
Team System 2008
TechEd
TechEdIsrael2008
TFS 2008 SP1
Utilities
Visual Studio 2008
WCF
WPF
<TestContainer> Works With WebTest & LoadTest In Team Build 2008 With SP1
Published on: http://vstskb.net/blog/2008/09/testcontainer-works-with-webtest-loadtest-team-build-2008-with-sp1/ The new < TestContainer > item in Team Build 2008 in a great way to run tests without test metadata file (*.vsmdi). You can specify the following to run all unit tests found in assemblies matching the pattern *.Tests.dll and even specify .LoadTest and .WebTest files as well: < ItemGroup > < TestContainer Include ="$(Outdir)*.Tests.dll" /> < TestContainer...
Configure Team Foundation Build for an Incremental Build
A question I got today: "How can I configure my Team Build for an incremental build?". Well, it's simple. Team Build 2005 Add the PropertyGroup definition to the end of the TFSBuild.proj file, before the closing </project> tag. Set the following properties: < PropertyGroup > < SkipClean > true </ SkipClean > < SkipInitializeWorkspace > true </ SkipInitializeWorkspace > < ForceGet > false </ ForceGet > </ PropertyGroup > Team Build...
How To Deploy Data Dude Project Changes using Team Foundation Build
When you want to build and deploy database projects with team build you need to edit the database project file and the Team Build file. That's because database projects store any non-default values for the TargetDatabase, TargetConnectionString, and DefaultDataPath properties in a <ProjectName>.dbproj.user file. *.user files are not checked into version control in order to let every user use different values. Step 1 - Modify build project file (team build .proj file) Open the...
Team Build 2008 Downloads One Level Only
TfsBuild.proj files can be located anywhere in source control in Team Build 2008. That is the reason why MS changed the default recursion type used to download files from the location of TfsBuild.proj to OneLevel only. The meaning is that only the contents of the exact directory of TfsBuild.proj are downloaded. Aaron Hallberg posted a solution to change this behavior. We have to modify the following line in the TfsBuildService.exe.config on the build machine: < add key ="ConfigurationFolderRecursionType"...
Visual Studio 2008 and .NET Framework 3.5 Training Kit
Microsoft released a nice training kit (~126MB) (it's a real treasure!) for the latest technologies. This package covers a bunch of technologies and includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2008 features and a variety of framework technologies including: Visual Studio Tools for Office Visual Studio Team System Application Lifecycle Management C# 3.0 VB 9.0 LINQ WPF WCF WF Silverlight ASP.NET AJAX CardSpace Mobile...
ALM 403: Control Your Database Lifecycle With Data Dude - Agenda
Next week I'll give a session at TechEd 2008 In Eilat, Israel. The session will introduce you how you can control your database changes and integrate it into your agile development methodology. Do you want to control your database changes? Do you want to test your database with unit test and even run static analysis on it? Do you want better life and easier deployment of the database schema changes to the production database? If one of your answers is YES, come and discover...
How To: Delete Build Agent In TFS 2008
I'm working on my TechEd demos which includes DB Projs and MSBuild + Team Build .I needed to remove one of my build agents. To remove a build agent, navigate to to the Build Menu , or the Build Explorer . Click on Manage Build Agents in order to remove/edit/add a build agent. In order to use the Build Menu , you must first open the Team Explorer . Otherwise, the Manage Build Agents will not be part of the menu.
Remove Items From ItemGroups In MSBuild
The ability to remove entries from ItemGroups is one of the new features of MSBuild 3.5. To remove an Item from an ItemGroup in MSBuild 2.0 you would have to create a new ItemGroup from the old one and skip the Item that you needed removed. In MSBuild 3.5 we can achieve it by using the Remove parameter. Example: < ItemGroup > < Files Include ="a.cs" /> < Files Include ="b.cs" /> < Files Include ="c.cs" /> < Files Include ="d.cs" ...
NDepend - Great Static Analyzer
Few week ago, I've been asked by Patrick Smacchia , a C# MVP to try this tool. I really want to thanks Patrick to give me the chance to evaluate a professional edition. I installed it and start working with. After using this tool, it's my most favorite tool to reviewing my code! NDepend is an excellent tool that is designed to provide a very deep analysis of your compiled code to help you understand and control your development effort by managing both the quality and the complexity of your...
Running Tests On TFS Build Machine
Often I asked "What do I need to install on the TFS build machine in order to run tests?" Well, the answer is simple. In VSTS 2005 you have to install the Tester or Suite editions on the Build Machine to run tests (even Unit Tests). In VSTS 2008 installing the Developer Edition version is enough.
TechEd Israel 2008, I'll Talk There
I'll be attending in Eilat's Teched (6-8 April 2008) presenting about VSTS for Database Professionals and Team Build. I'm very excited... If development is your business, (or) you are decision maker, (or) ALM interesting you, (or) you suffering with database version management, (or) I'm interesting you... then this session is for you! Hopefully I'll actually find the time to make a Live Blogging from the conference. Microsoft also arranges a meetings with the lecturers - I'll...
Team Build 2008 Property Reference
Aaron Hallberg has posted a great reference to the Team Build 2008 built-in properties. You can find it at: http://blogs.msdn.com/aaronhallberg/archive/2008/02/12/team-build-2008-property-reference.aspx
Visual Studio Team System 2008 Database Edition Power Tools
Finally, the “DataDude” team announced the availability of the Power Tools for Visual Studio Team System 2008 Database Edition. The release includes all the functionality that shipped in 2005 plus: Command line SQL Static Code Analysis execution through MSBuild. This enables SQL Static Code Analysis to be an integrated part of Team Build! Data Generation Wizard; allow users to create a new data generation plan by pointing at an existing database, the plan will be fully configured by the...
TeamBuild 2008 - SetBuildProperties Task
SetBuildProperties task is one of the new tasks that shipped in Team Build 2008. With this task we can modify properties of a BuildDetail object directly from MSBuild's TfsBuild.proj script. The SetBuildProperties task is defined in the Microsoft.TeamFoundation.Build.Tasks.VersionControl.dll . The available properties are: Property Description LabelName Specifies the label name. DropLocation Specifies the drop location. (shared folder to which the build account has read/write privileges) Quality...
Default Build Quality In Team Foundation Build 2008
I wanted to define my default build quality at one of my Team Build Types in TFS 2008 like I did at Team Build 2005. But... in Team Build 2008, the default build quality notion was removed . Note: The default value for the build quality of a new build in TFS 2008 is null, not empty string. So, how can you set the build quality? Use the SetBuildProperties task. Read about it here ;
More Posts
Next page »
Search
Go
This Blog
Home
Contact
About
News
RSS
Connect with Me
Tags
.NET
.NET 3.0
.NET 3.5
.NET 4
Acropolis
AJAX
ALM UG
AppFabric
Are you ready 2008
Asp.Net
Asp.Net 2.0
ASP.NET 3.5
ASP.NET MVC
Astoria
Big Data
Blog
Book
C#
ClickOnce
Client
Cloud Computing
Code Analysis
Coding Standards
Community
CTO
Data Dude
DEV
DevAcademy2
Developer Academy 4
Development Process
Enterprise Library
Events
Google
Internet
ITPRO
Kincect
Lab Management
Lambda Expressions
Lectures
LINQ
Live
load test
Management
Misc
MS IL Misc
MSBuild
MVP
Networking
News
Office 2010
OFFTopic
Online Services
Open Source
Opinion
Patterns & Practices
PDC10
Performance
Platorm
Private
Robotics
Rosario
Security
SharePoint 2010
Silverlight
Silverlight 4
Silverlight 5
Software Development
SQL Azure
System
Team Build
Team Build 2008
Team System
Team System 2008
Team System 2010
Team System Tools
TECH
TechEd
TechEdIsrael2008
TFS
TFS 2008 SP1
Tools
Utilities
visual studio
Visual Studio 2008
Visual Studio 2010
Visual Studio 2010 SP1
Visual Studio LightSwitch
Volta
VS 2008 SP1
VSTS
VSTSDB
WCF
Web
Windows 8
Windows Azure
Windows Azure Tools
Windows Identity
Windows Phone
Windows Phone Mango
WPF
Navigation
Home
All Posts
RSS
Popular Tags
Archives
December 2011 (6)
November 2011 (2)
September 2011 (1)
August 2011 (8)
July 2011 (11)
June 2011 (5)
March 2011 (2)
January 2011 (5)
December 2010 (3)
November 2010 (1)
October 2010 (4)
September 2010 (1)
August 2010 (2)
June 2010 (6)
May 2010 (8)
April 2010 (1)
March 2010 (1)
February 2010 (6)
December 2009 (1)
November 2009 (2)
October 2009 (2)
September 2009 (2)
August 2009 (1)
June 2009 (2)
May 2009 (3)
April 2009 (3)
March 2009 (6)
February 2009 (4)
January 2009 (3)
December 2008 (7)
October 2008 (4)
September 2008 (14)
August 2008 (3)
July 2008 (3)
June 2008 (11)
May 2008 (7)
April 2008 (15)
March 2008 (19)
February 2008 (11)
January 2008 (6)
December 2007 (24)
November 2007 (17)
October 2007 (30)
September 2007 (22)
August 2007 (2)
July 2007 (10)
June 2007 (15)
May 2007 (18)
Blog Roll
bharry's WebLog
ScottGu's Blog
maor.blogging()
RSS
Blog Pages
Rosario's CTP 12
WCF
Syndication
RSS
Atom
Comments RSS