Quantcast
Channel: Team Foundation Server - General forum
Viewing all 6687 articles
Browse latest View live

Web Access Not Loading Completely After Upgrade

$
0
0

We recently upgraded from TFS 2012 Update 2 to TFS 2013 Update 4.

After the upgrade, users are having intermittent issues trying to load Web Access - for some users, only the header loads, but none of the information below (like work items, for example) loads - the entire screen basically stays blank.

This is happening on different browsers for different people.  Clearing caches has worked for some users and not others, and for some people the problem has come back after being able to load Web Access normally a couple days ago.

I do see this error popping up when debugging:

No define call received from module Presentation/Scripts/TFS/TFS.DataServices. This might be a problem.

What can I do to correct this?



TFS - Custom controls in Visual Studio - Event handlers get trigered thrice

$
0
0

 workItem.FieldChanged += new WorkItemFieldChangeEventHandler(this.workItem_changed);
               workItem.Saving += new WorkItemPreSaveEventHandler(this.workItem_preSave);

I am wondering why these handlers are getting called thrice when a presave or fieldchanged event just occur for one time. I got stuck up in this. I am throwing an error message inside these handler (tried with both handlers) . Because of this multi-time calling, I am getting the error message box in Visual studio for three times. Please help . If it is that way it is done, then please suggest how I can display the error message in work item(Ex:TFS system throws error when a required field is not given) itself rather than using message box and how to prevent save. or any way i can do this by use of threading or something. I am bit new to .NET threading concepts.

Don't display team in a team project based on user permission

$
0
0

Hi all,

I have a problem because I want to disable display and access to a Team Project\Team in WebAccess.

My organization for a team project in my collection:

Team project Customer
--> Customer dev team (default team)
--> Customer consulting team 
--> Customer Support team

Each team have an area.

"Support team" doesn't have access to see and edit WorkItems in "Customer dev" and "Customer Consulting" areas, it's ok but I want that Support team member never have access to the "Customer dev team" and "Customer consulting team"

I log in as a Support team member, Security works well for workitems but when i go to "Browse all", the popup "Browse Server" display all teams under team project name. It's a problem for me.

Do you already see this security problem ?

Is this possible to do this in TFS 2013 (Update 4) ?

Thanks.


Determining previous TFS 2013/2013 Build Process Template

$
0
0
I am looking at previous builds in TFS 2012 using a custom Build Process Template, and while it is easy to determine what template will be used for my Next build, how do I determine what was used on a previous build?  Example:  TeamA builds ProjectA using TemplateA.  Then they say something was not correct, and they switch to a new TemplateB.  I can see TemplateB in their configuration, but need to make changes to TemplateA (it has custom hooks already in place for other things that are needed). How do I determine what TemplateA was?  It is not in any of the ActivityLogs or in their Build Logs.  Just for the sake of argument, assume that there are 100s of build process templates, not easy to determine which was originally used.

TFS build web application

$
0
0

Hello,

I would like to use TFS.

I installed it and I created a collection and a team project. I think it is working because I can Check-Out and Check-In the source files.

I developing a php web application with PHP tools for Visual Studio. So I would like public my work with build function. I set up the Build Configuration on the Server (created build service, build controller and a build agent). And finally I created a build definition in Visual Studio. If I queue new build it drop an error.

C:\Program Files (x86)\MSBuild\DEVSENSE\PHP Tools\1.0\Devsense.PHP.MsWebApplication.targets (14): The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\WebApplications\Microsoft.WebApplication.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.

Why do this?

Thanks for your help!

Coded UI API Testing

$
0
0

Hello,

I am new to Coded UI and API testing, I like to know where a detailed step by step approach for non UI scripting reference, for multiple parameters passing can be found. 

Thanks in Advance!

How to show the steps and and the comments of a failed test

$
0
0

Hi,

i don't  know, how to show a recorded test, especially if the test has been failed.


Thanks,


Michel

TFS TF Command bat script login

$
0
0

I have a question about TFS TF Command in bat script:

We create Daily Build Script in server that need to get source and make a label, it is always prompt me to enter username and password. But, you know, if I write my password in a script that is a security policy violation.

Windows:

Tf command like this.

tf get itemspec [/version:versionspec] [/all] [/overwrite] [/force] [/preview]

       [/recursive] [/remap] [/noprompt] [/login:username,[password]]

Unix:

Now we use this way to get source, it not security.

alias tfcmd='/tmp/software/TEE-CLC-12.0.1/tf -login:APAC\\UserName,password-server:https://tfspro.contoso.com/tfs/tfs03'

tfcmd get -Version:T -recursive -force -overwrite /tmp/workspace/

Could you please teach us about other solutions?


Rodrigo.-


resx file will not stay checked-out

$
0
0

I have noticed that resx files will not stay checked-out.

We are using a Windows Forms front end.

We are using a WCF layer.

We are using TFS 2012 with local workspaces.

We are using Visual Studio 2012 on Windows 7.

When I start editing a Windows Form, it works as expected, I edit a file, it checks-out and stays checked out. But, the associated RESX file keeps checking itself back in. Then when I edit the design surface, or do something else that affects the RESX file, the RESX prompts for checkout (because it has checked itself back in).

Is this normal behaviour for TFS?

Please advise.

Thanks.

-- Mark Kamoski


-- Mark Kamoski

TFS 2013 Installation and Admin CHM guides missing

How to copy queries from 1 Query folder to another query folder in TFS 2013 using C # programmatically ?

$
0
0

Hi ,

         I'm trying to copy a bunch of queries from 1 folder in "Shared queries" to another folder within "Shared Queries" using C#.

         I'm looking to do something like this

         foreach(query q in folderx )

         {

                        foldery.query = folderx.query;

          }

          I have been trying to use the queryfolder and its properties but not able to find the correct class/property/function to use. I have seen this link http://bzbetty.blogspot.in/2012/12/tfs-automation-automatically-creating.html but here they are creating new queries in the new folder rather than copying it .

Formatting a Custom Build Summary Section

$
0
0

I'm creating a custom section in my Build Summary that will display detailed code coverage information, using the CustomSummaryInformation object within a CodeActivity to create the section.

Is there formatting that I can add to the message to create collapsible sections within the message?

My goal would be to have an overview displayed the coverage per solution, which can be expanded to show the coverage for each assembly within that section.

-> Solution 1 - 1% covered

--> Assembly 1 - 2% Covered

--> Assembly 2 - 2% Covered

-> Solution 2 - 100% covered

--> Assembly A - 100% covered

--> Assembly B - 100% covered


Scrum template - tasks n bugs on the board - how to get the bug to follow the same process as a task?

$
0
0

We have the option to create a task or bug from the PBI. so far so good.

we have swimlines and the bug can only go from "NEW" to Done". we use the swimline "in progress" for every task/bug that is undwergoing work. How can we get the bug to follow that process on the board?

Creating automated builds using TFS 2013

$
0
0

Hello All,

I need help regarding how should I create build defination for VS2008,2012,2013 projects in order to get .msi files.

I have tried using upgraded template for VS2008 proj and using .proj but this is not working and I am getting error of TF.exe exited with code 100 error.

Thank you.


Team Foundation Server - Conferences

$
0
0

I'm looking for a conference to learn more about Team Foundation Server. Where do all of the TFS subject matter experts hang out?

I'm interested in learning more about:

What is the roadmap for TFS, features coming and going.

How to use teams in TFS 2013 (is this an outdated feature to be removed), from a security perspective and how to keep each teams work items to themselves.

What cool things are teams doing with the build process? What tools are being integrated into the build?


Migrating from TFS2010 to TFS2013 and SharepointFoundation2013 on WindowsServer 2012 R2

$
0
0

Hi,

I am in the middle of a migration project to upgrade our TFS2010 instance to TFS2013. Our new environment will be a VM using Windows Server 2012 R2 64 bit along with SharePoint Foundation 2013. The SPF2013 SP1 needs to be installed separately since the one that is bundled with TFS2013 doesn't work with R2 (not SP1). I am having trouble understanding the order to which to do things to get this to work. I actually got it to work the first time and now going back trying to redo my steps with detailed docs is proving more difficult.

  1. We have begun by doing a BackUp of our TFS2010 environment and then Restoring that to our new TFS2013 VM.
  2. I am then installing SharePoint Foundation SP1 - prereqs then Install.
    I then begin to wonder about the screens as to a) connect to existing server b) create new server
  3. Although I would think that I want to connect to existing since we have a database we've Restored I am given an error
  4. At what stage do we run the migration tool that updates all the database schema etc to the new 2013 format?
  5. I am being told that "Cannot find an existing configuration database located at the specified database server...

Could someone please list the steps to do this migration? None of the steps I am trying seem to work through.

regards,

Bill44077


William Campbell

TfvcTemplate.12.xaml / msbuild argument passing

$
0
0

I am using Octopack to custom bundle some plugin assemblies.  I need to pass the build server target directory as an argument to Octopack so it knows which build server folder to bundle my plugins from.  

Here are the TFS 2013 / MSBuild args that I have so far.  The ??? is what I am not sure of...

/p:RunOctoPack="true" /p:OctoPackPublishPackageToFileShare="c:\NuGet\Foo" /p:OctoPackNuGetProperties="MyTargetDirectory=???"

What do I put in for ??? to have MSBuild pass the target directory?

thanks

TFS Example - best process of starting a new revision of an existing project

$
0
0

I am looking for an example that shows how to start a new revision for an existing project.

The Project already exist in the TFS system (features, backlogs, code, tests). Now I need to add some more features to the existing project which was already released. How start the process (after all there is no need to create a new project). How to differentiate the new code from the old one and how to run the updated set of tests on the updated version (and to be able to trace back what was run for the previous version)

Thanks 

Beni

 

 

Tfs automation build and Hyper-v auto deployment

$
0
0

I play SCVMM and WMI for a few day. I still didn't find enough manual on How to deploy installshield msi to Hyper-v machine using TFS API and SCVMM API and Hyper-v API.

The following Step I want to do is

1. use TFS build to make msi installer. This Step is done perfectly.

2. Now we have msi installer. I want to install it to 10 Hyper-v machine automatically.(msi silent installer is enabled).

I try my best to find books, blog, but still didn't get enough information.

TFS Setup error

$
0
0
I have installed Visual Studio 2008 and VS2008 Team explorer as well. But when I try to add the server name from the Tools option, I get the error-TF30335-The server name cannot contain the characters '\' or ':'...
Viewing all 6687 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>