Book Image

Team Foundation Server 2013 Customization

By : Gordon Beeming
Book Image

Team Foundation Server 2013 Customization

By: Gordon Beeming

Overview of this book

<p>Team Foundation Server offers you the benefit of having all your data in one system with all tools tightly integrated with each other, making it easier for teams to work together. Knowing how to customize the Team Foundation Server is very useful as well as powerful. Having the knowledge and applying it to TFS can save users many hours as well as make it easier to understand the data in TFS for reporting purposes.</p> <p>This book will show you how to customize various TFS features in order to create an enhanced experience for your users and improve their productivity. You will create custom controls that will be used in client applications and inside the web access. Next, you will learn how to embed a web page inside your work items to display rich information linked to the work items you are opening.</p> <p>This book will show you how to modify a team’s process template, and then slowly get to grips with some C# code and create a scheduled job.</p> <p>Using this book, you will create a JavaScript web access plugin that greatly increases productivity. You will start off by making various modifications to the process template to illustrate how we can cater to custom data requirements, and then we will move towards writing code to perform more complex customizations.</p> <p>Customizing Team Foundation Server 2013 is one of the best methods you can use to provide rich data for reporting in TFS.</p>
Table of Contents (13 chapters)
Team Foundation Server 2013 Customization
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 3. Enhancing Work Items with Custom Controls

This chapter will cover creating custom controls for TFS. We will start with creating a Windows Forms control that will be displayed in the client applications, and then we'll create its web counterpart. We will then use this control in a work item definition. We will be covering the following topics:

  • Creating a Windows Forms control for use in the client applications, including:

    • Writing the code

    • Deploying the control

    • Debugging the control

  • Creating a control for use inside the Web Access, including:

    • Writing the code

    • Deploying and debugging the code

  • Using the newly created control on an existing work item definition

  • Displaying a web page with rich data inside a work item definition

There are some types of fields that would make you think, "If only I had a certain type of field I could...". Well, in this chapter, we are going to create a control that would come in very handy for most teams, and this control is a checkbox. You can make your custom...