tfs

How to update the built-in Microsoft task library in TFS 2017?

倾然丶 夕夏残阳落幕 提交于 2020-07-09 17:08:32
问题 What is the process for upgrading the default tasks loaded by Microsoft in an on-premises TFS with no internet connectivity? According to https://docs.microsoft.com/en-us/vsts/build-release/tasks/ there are several tasks now available and supported in TFS v2015-2018/VSTS that do not appear in my TFS 2017u2 installation (specifically the Download Secure File task). The default tasks are not shown in the Manage Extension screens and the git repo (https://github.com/Microsoft/vsts-tasks) does

How to update the built-in Microsoft task library in TFS 2017?

久未见 提交于 2020-07-09 17:07:23
问题 What is the process for upgrading the default tasks loaded by Microsoft in an on-premises TFS with no internet connectivity? According to https://docs.microsoft.com/en-us/vsts/build-release/tasks/ there are several tasks now available and supported in TFS v2015-2018/VSTS that do not appear in my TFS 2017u2 installation (specifically the Download Secure File task). The default tasks are not shown in the Manage Extension screens and the git repo (https://github.com/Microsoft/vsts-tasks) does

Powershell build - compiling SASS

折月煮酒 提交于 2020-07-08 04:06:08
问题 I'm hoping to start using SASS in a Visual Studio 2010 project using Web Workbench - but the issue of version control through TFS has me stumped. To avoid overriding someone else's changes I understand that the outputted CSS should be excluded from source control, and that the SCSS should be compiled to CSS server side during the build process. Currently we use a Powershell script for the build, but I can't seem to find any information on how to incorporate SCSS compilation in Powershell. Is

What does stack rank mean?

北城以北 提交于 2020-07-06 06:10:17
问题 What's stack rank mean for a work item in Team Foundation Server 2010? Is it a user characteristic of some kind? 回答1: It assigns a priority to a requirement. 回答2: In most cases priority and stack rank are aligned i.e. on average higher priority items will have lower/earlier rank... BUT Stack Rank is not priority . It is just the order in which your team will work i.e. Rank 1 is the item on which your team will work first, Rank 2 is the second and so on... so when does a lower priority item

How to add a custom State for WorkItems in Visual Studio Team Services

末鹿安然 提交于 2020-07-05 02:42:06
问题 I'm using Visual Studio Team Services (http://visualstudio.com/), with Visual Studio 2012. I'd like to add a new State Value for WorkItems. After a search I discover that i can edit the process template to achieve that. I've tried the menu item "Team\Team Project Collection Settings\Process Template manager", but i'm getting the following message: Visual Studio could not retrieve your user permissions from Team Foundation Server. Contact your Team Foundation Server administrator to determine

Use XAML-Builds with TFS 2018 Update 2

a 夏天 提交于 2020-07-03 03:22:44
问题 We installed the newest TFS Server (TFS 2018 Update 2) which should run xaml builds. After the update, we started our agent, but our xaml-controller is still offline and I don't know how I start this again.. Any ideas what we can do? 回答1: Yes, you can now upgrade to TFS 2018 Update 2 and continue to connect your XAML controllers and run XAML builds. When we removed support for XAML build in TFS 2018 RTW and Update 1, some of you could not upgrade due to having legacy XAML builds, and we want

Use XAML-Builds with TFS 2018 Update 2

最后都变了- 提交于 2020-07-03 03:22:10
问题 We installed the newest TFS Server (TFS 2018 Update 2) which should run xaml builds. After the update, we started our agent, but our xaml-controller is still offline and I don't know how I start this again.. Any ideas what we can do? 回答1: Yes, you can now upgrade to TFS 2018 Update 2 and continue to connect your XAML controllers and run XAML builds. When we removed support for XAML build in TFS 2018 RTW and Update 1, some of you could not upgrade due to having legacy XAML builds, and we want

How do I connect to my Teamproject, after I changed my primary Account Alias?

偶尔善良 提交于 2020-06-29 04:13:40
问题 A few days ago I changed my primarly alias for my Microsoft Account. Now I want to checkin my code, and get some error messages: An attempt to communicate with Visual Studio Team Services failed because a token could not be retrieved. You are anot authorized to access [...] Here is a picture of it: As suggested, I already tried re-entering my credentials. But this has no effect. I already tried closing Visual Studio, restarted my PC, but nothing helps. How can I solve the problem? 回答1: I

How do I connect to my Teamproject, after I changed my primary Account Alias?

别来无恙 提交于 2020-06-29 04:13:23
问题 A few days ago I changed my primarly alias for my Microsoft Account. Now I want to checkin my code, and get some error messages: An attempt to communicate with Visual Studio Team Services failed because a token could not be retrieved. You are anot authorized to access [...] Here is a picture of it: As suggested, I already tried re-entering my credentials. But this has no effect. I already tried closing Visual Studio, restarted my PC, but nothing helps. How can I solve the problem? 回答1: I

Test Case Parameter values and shared parameter values

£可爱£侵袭症+ 提交于 2020-06-29 03:49:13
问题 I want to create data parameter name and values data in dictionary Dictionary<string, List> //string is ParameterName, List is Parameter Values Dictionary<string, List<string>> parameterNameValues = new Dictionary<string, List<string>>(); DataTable parametersTable = testCase.DefaultTableReadOnly; DataRowCollection dr = parametersTable.Rows; DataColumnCollection dc = parametersTable.Columns; for (int i = 0; i < dc.Count; i++) { string pName = dc[i].ColumnName; List<string> pValue = new List