Mostrando entradas con la etiqueta Report. Mostrar todas las entradas
Mostrando entradas con la etiqueta Report. Mostrar todas las entradas

martes, 12 de febrero de 2013

Links útiles #21 Team Foundation Server

1-TFS Build Extension Enero 2013

http://mikefourie.wordpress.com/2013/01/31/community-tfs-build-extensions-jan-2013-release-available/

2-Reporting sobre TFS 2010

http://blogs.msdn.com/b/sunder/archive/2009/11/24/reporting-in-team-foundation-server-2010-part-1-introduction.aspx

http://blogs.msdn.com/b/sunder/archive/2010/01/05/reporting-in-team-foundation-server-2010-part-2-sharepoint-dashboards-sharepoint-server-dashboard.aspx

http://blogs.msdn.com/b/sunder/archive/2010/01/07/reporting-in-team-foundation-server-2010-part-3-sharepoint-dashboards-sharepoint-server-dashboard-customization.aspx

http://blogs.msdn.com/b/sunder/archive/2010/02/02/reporting-in-team-foundation-server-2010-part-4-sharepoint-dashboards-creating-a-team-dashboard.aspx

http://blogs.msdn.com/b/sunder/archive/2010/02/18/reporting-in-team-foundation-server-2010-part-5-sharepoint-foundation-dashboard.aspx

http://blogs.msdn.com/b/sunder/archive/2010/02/23/reporting-in-team-foundation-server-2010-part-6-rich-sql-reporting-services-reports.aspx

http://blogs.msdn.com/b/sunder/archive/2010/02/24/adding-reports-dashboards-and-updating-reports-on-an-existing-team-project.aspx

http://blogs.msdn.com/b/sunder/archive/2010/03/02/reporting-in-team-foundation-server-part-7-excel-reports-from-work-item-queries.aspx

http://blogs.msdn.com/b/sunder/archive/2010/04/07/reporting-in-team-foundation-server-2010-part-8-custom-reports-options-tools.aspx

http://blogs.microsoft.co.il/blogs/eranruso/archive/2013/01/29/sharepoint-dashboards-modification-queries.aspx?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+EranRuso+%28Eran+Ruso%29

3-TFS API – comentarios sobre work items

http://www.codewrecks.com/blog/index.php/2013/02/02/tfs-api-to-associate-work-item-with-check-in-using-comment-tags

4-Team Foundation Mobile (OData)

http://programandonet.com/web/team-foundation-service-mobile/

5-PSExec con TFS Build

http://www.codewrecks.com/blog/index.php/2010/07/10/deploy-remotely-with-tfs-build/

http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx

http://blogs.itpro.es/david/2011/09/02/ejecutando-aplicaciones-de-manera-remota-con-psexec/

http://stackoverflow.com/questions/9496949/psexec-with-tfs-build

http://www.danielcolomb.com/2011/06/27/deploying-windows-services-from-tfs/

http://www.andygeldman.com/index.php/2012/02/case-study-automated-build-deployment-of-a-legacy-web-app/

6-Custom Activity counters

http://geekswithblogs.net/charliemott/archive/2013/02/04/tfs-build-custom-activity--todo-counter.aspx

7-SCOM 2012 (Operations Manager 2012) y TFS 2010/2012

http://blogs.like10.com/2013/02/04/welcome-to-the-new-age-scom-2012-sp1-and-tfs-20102012-devops/

8-TF.exe ejemplos de uso

http://mohamedradwan.wordpress.com/2013/02/03/tf-exe-fast-overview/

9-TFS Build y archivos .config – transformations

http://geeklyeverafter.blogspot.pt/2013/02/xdt-transformsmostly-known-as-web.html

10-Extensiones útiles para Visual Studio y TFS

http://visualstudiogallery.msdn.microsoft.com/96ca3487-ef76-4c99-8e9e-0d4ae53a11f9

http://visualstudiogallery.msdn.microsoft.com/2c490d1b-bfa4-45e9-b991-3c9a0a0fbadd

http://visualstudiogallery.msdn.microsoft.com/a306ddcc-abe1-4ec3-ba77-56a807c34f8f

11-Customize Build Template para TFS 2012

http://lajak.wordpress.com/2013/01/29/customize-build-template-in-tfs2012-to-build-all-solutions-part-1/

http://lajak.wordpress.com/2013/01/30/customize-build-template-in-tfs2012-to-build-all-solutions-part-2/

miércoles, 20 de junio de 2012

Tips/info #6 Team Foundation Server

1-Cambiar la frecuencia del refresco de los reportes deTFS

La base relacional (Tfs_Warehouse) es procesada dentro de los 2 minutos que los cambios son realizados a un store operacional, y el cubo SQL Server Analysis Services (Tfs_Analysis) es procesada dentro de las 2 horas.

Pasos para reducir el refresco de datos de reportes

1. Abrir la página WarehouseControlWebService

http://localhost:8080/tfs/TeamFoundation/Administration/v3.0/WarehouseControlService.asmx

2. Click en ChangeSetting

3. En el campo settingID, escribir IncrementalProcessIntervalSeconds

4. En el campo newValue, agrega 600, y a continuación click en el botón Invoke

Esto seteará el refresco del cubo a 10 minutos

2-Locks huérfanos en TFS 2010

El error dice: The item $/proj/xyz is locked for check-out by (null) in workspace (null).

El siguiente script de sql borra los locks huérfanos.

SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
DELETE l
FROM  tbl_Lock l
LEFT JOIN tbl_PendingChange pc
ON l.PendingChangeId = pc.PendingChangeId
WHERE pc.PendingChangeId IS NULL

3-Propiedades de MSBUILD para Sharepoint 2010

Cualquier propiedad de MSBuild se definen en el archivo Microsoft.VisualStudio.SharePoint.targets, archivo de proyecto o un archivo de usuario del proyecto puede ser utilizado en proyectos de Visual Studio SharePoint. Además de las propiedades de MSBuild comunes proporcionados por el proyecto, define las propiedades de SharePoint adicionales que son específicos para los proyectos de SharePoint.

Property Name

Description

SharePointSiteUrl

A string that represents the URL to the SharePoint site.

SandboxedSolution

A Boolean value that indicates whether the solution is a sandboxed solution.

ActiveDeploymentConfiguration

The active deployment configuration.

IncludeAssemblyInPackage

A Boolean value that indicates whether the assembly is included in the package file.

PreDeploymentCommand

A string value that represents the command to execute in the pre-deployment command step.

PostDeploymentCommand

A string value that represents the command to execute in the post-deployment command step.

CustomBeforeSharePointTargets

A string that represents the path of a MSBuild targets file. If the targets file exists and is defined, it is imported before any SharePoint targets data. This property lets you customize the package process by predefining packaging-related properties without modifying the shipped SharePoint targets file, yet the targets file still applies to all SharePoint projects.

CustomAfterSharePointTargets

A string that represents the path of a MSBuild targets file. If the targets file exists and is defined, it is imported after all of the SharePoint targets data. This property lets you customize the package process by overriding packaging-related properties and targets without having to modify the shipped SharePoint targets file, yet the targets file still applies to all SharePoint projects.

LayoutPath

A string that represents the root directory where each of the files to be packaged are temporarily placed before they are added to the .wsp file. This path can be useful to know when you override the BeforeLayout and AfterLayout targets to add, remove, or modify files to be packaged, because you can use it to alter the contents of the .wsp file.

BasePackagePath

A string that represents the folder in which the package is placed. This value uses the output directory of the project, such as Bin\Debug.

PackageExtension

A string that represents the file name extension to append to the package. The default value is wsp.

AssemblyDeploymentTarget

A string that represents the location where the project assembly is deployed on the SharePoint server. Its value is either GlobalAssemblyCache (the default) or WebApplication. This property can also be set in the Properties window.

PackageWithValidation

A Boolean value that specifies whether validation is performed before packaging. This property lets you ignore validation errors while building Packages.

ValidatePackageDependsOn

A string that defines additional targets to execute before the ValidatePackage target.

TokenReplacementFileExensions

A string that defines the files that have their tokens replaced during packaging.

4-“TF50309: The following account does not have sufficient permissions” al tratar de conectar TFS MSSCCI provider con Visual Basic

Al tratar de conectar a TFS con Visual basic, nos lanza este error, para ello se debe ingresar la url de tfs de la siguiente manera: http://tfs _server:puerto/tfs/team_project_collection/

jueves, 26 de abril de 2012

Links útiles #6 Team Foundation Server

1-Visual Studio Team Foundation Server 2010 virtual labs

2-Team Foundation Services Guía de participantes

http://blogs.msdn.com/b/visualstudioalm/archive/2011/12/07/team-foundation-service-preview-beginner-s-guide.aspx

3-WebDeploy 3.0 Beta (para deployar aplicaciones NET con TFS sobre IIS)

http://forums.iis.net/p/1188492/2018442.aspx#2018442

4-TFS Integration Marzo 2012

http://blogs.msdn.com/b/visualstudioalm/archive/2012/04/04/tfs-integration-tools-march-2012-release.aspx

5-Integrar java con TFS 2010

Version Control: http://visualstudiogallery.msdn.microsoft.com/bce06506-be38-47a1-9f29-d3937d3d88d6

Build (Ant /Maven): http://visualstudiogallery.msdn.microsoft.com/2d7c8577-54b8-47ce-82a5-8649f579dcb6/ 

6-Verificar si TFS está activo

https://msmvps.com/blogs/vstsblog/archive/2011/03/02/how-to-ping-tfs-to-see-if-it-s-up-and-running.aspx

7-Integrar JIRA con TFS

http://rootssystems.blogspot.com.ar/2012/04/integracion-de-tfs-con-jira.html

8-Store overview report: mostrar el estatus de test

http://bobhardister.com/archive/2012/04/04/customizing-the-test-status-on-the-tfs-2010-ssrs-stories.aspx

9-JDeveloper y Team Foundation Server 2010

http://blogs.msdn.com/b/dpe_nigeria/archive/2012/04/18/developing-java-projects-using-jdeveloper-and-tfs-as-source-control.aspx

http://beatechnologies.wordpress.com/2011/09/29/using-microsoft-tfs-as-version-system-with-jdeveloper-11g/

10-Utilizar Test Manager 2010 con TFS 2011

http://support.microsoft.com/kb/2662296

11- Run and Deploy Custom Check-in policy using TFS SDK 11 for Java

http://www.dotnetcurry.com/ShowArticle.aspx?ID=802

12-TFS 2010 SDK

http://geekswithblogs.net/TarunArora/archive/2011/06/18/tfs-2010-sdk-connecting-to-tfs-2010-programmaticallyndashpart-1.aspx

viernes, 6 de abril de 2012

Links útiles #5 Team Foundation 2010

1-Políticas de check-in + tfsccpolicy

http://www.c-sharpcorner.com/UploadFile/40e97e/tfs-2010-%E2%80%93-how-to-set-check-in%C2%A0policy/

2-Hacer un restore de datos a otro server o instancia

http://msdn.microsoft.com/en-us/library/ms252516.aspx

3-Mover o copiar un team project collection

http://msdn.microsoft.com/en-us/library/dd936138.aspx

4-Mover un team project a otro team project collection

http://msdn.microsoft.com/en-us/vstudio/bb840033

http://tfsintegration.codeplex.com/

5-Build en TFS Services

http://geeks.ms/blogs/devnettips/archive/2012/03/29/creaci-243-n-de-una-build-con-el-nuevo-servicio-de-builds-para-tfs-service.aspx

6-Test unitarios con NUNIT en VS11 y tfservices

http://geeks.ms/blogs/devnettips/archive/2012/03/30/tests-unitarios-con-nunit-u-otros-con-vs11-y-en-tfsservice.aspx

7-Burndown

http://blog.hinshelwood.com/whats-in-a-burndown/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+MartinHinshelwood+%28Process%2C+Practices+%26+Tools%29

8-Build y deploy de solutiones Azure con TFS 2010

http://blog.slalom.com/2011/08/19/building-and-deploying-windows-azure-projects-using-msbuild-and-tfs-2010/

9-Compatibilidad Visual Studio 2005 y TFS 2010

http://www.microsoft.com/download/en/details.aspx?id=3263

viernes, 24 de febrero de 2012

TFS Reporting–Introducción

Hay pocas empresas que usan la funcionalidad de reportes de TFS. Les explicaré un poco el funcionamiento básico.

image

La base de datos de configuración de TFS (Tfs_Configuration) contiene toda la información necesaria para manetener TFS en marcha y funcionando.Contiene información sobre las distintas colecciones de proyectos, la seguridad del servidor, eventos, notificaciones, jobs, etc

La base de datos de configuración de TFS registra todos los Team Project Collections. La base de datos del Team Project Collection es el almacén operativo (Tfs_DefaultCollection). Todos los datos que se reúnen en todos los Team Project son escritos a esta base de datos. Elementos de trabajo, control de versiones, builds, Seguridad, etc

Todas las bases de datos de collectiones se consolidan en la base de datos de Warehouse (Tfs_Warehouse). No todos los datos en el almacén operativo se envía a esta base. Los works items que establezcan el atributo reportable (más información sobre los diferentes atributos que puedes encontrar aquí). Por ejemplo, si se agrega un campo a un elemento de trabajo usted puede elegir cómo el campo se publica en el almacén (ninguno, dimensión, medida o detalle). La mayoría de los campos que se agregan serán campos de dimensión (categoría, nombre del equipo, prioridad, etc).

El TFS warehouse es una base de datos relacional. Una vez cada dos horas (intervalo se puede cambiar véase http://msdn.microsoft.com/en-us/library/ms244694.aspx) el cubo de TFS (Tfs_Analysis) es actualizado con nueva información. Sólo dimensiones y medidas son enviados al cubo.

martes, 24 de enero de 2012

TFS 2010 Stories Overview Report (Agile)

Este reporte es bueno para los Project managers. The Stories Overview report muestra gráficamente información general sobre los user stories  filtrada por área o iteración en un orden de importancia.

The Stories Overview report presents a snapshot of the work that has been performed for the filtered set of user stories to the current date.

Work Progress

  • % Hours Completed: A numeric value and visual representation that shows the percentage of completed work based on the rollup of baseline and completed hours for all tasks that are linked to the user story or its child stories.

  • Hours Remaining: A numeric value for the rollup of all remaining hours for all tasks that are linked to the user story or its child stories.

Test Status

  • Test Points: A numeric value that represents the number of pairings of test cases with test configurations in a specific test suite. For more information about test points, see Reporting on Testing Progress for Test Plans.

  • Test Results: A numeric value and visual representation that shows the percentage of test cases, grouped according to the status of their most recent test run, where the options are Passed (green), Failed (red), or Not Run (black).

  • Bugs: A numeric value and visual representation that shows the number of bugs that are linked to the test case or user story, where the options are Active(blue) and Resolved (gold). If a user story is linked to one or more child stories, the values represent a rollup of all bugs for the user story and its child stories.

Más información:

http://technet.microsoft.com/en-us/query/dd380648