Click here to Skip to main content
15,868,164 members
Everything / Application Lifecycle Mgmt

Application Lifecycle Mgmt

ALM

Great Reads

by CodeProject
On Wednesday November 12, Microsoft CVP Brian Harry will be available here for a live Q&A in the comment section of this article.
by Jim Roth
Use PowerShell Post-build scripts to check in binaries to TFS for continuous integration during the build process.
by Metaphysico
Clone a TFS Work Item and Its Children with links
by Alexander Turlov
How to use Google Tag Manager to deploy Azure Application Insights Client-side Monitoring

Latest Articles

by Alexander Turlov
How to use Google Tag Manager to deploy Azure Application Insights Client-side Monitoring
by Metaphysico
Find Unit Tests that do not show up in test results.
by Rasmus_Hald
Microsoft teamed up with a major independent software vendor (ISV) to identify and improve the vendor’s DevOps practices, with a focus on monitoring.
by Metaphysico
How to clone Test Suites with Test Case References

All Articles

Sort by Score

Application Lifecycle Mgmt 

12 Nov 2014 by CodeProject
On Wednesday November 12, Microsoft CVP Brian Harry will be available here for a live Q&A in the comment section of this article.
9 Feb 2016 by Jim Roth
Use PowerShell Post-build scripts to check in binaries to TFS for continuous integration during the build process.
18 Aug 2016 by Metaphysico
Clone a TFS Work Item and Its Children with links
5 Jan 2017 by Alexander Turlov
How to use Google Tag Manager to deploy Azure Application Insights Client-side Monitoring
27 Apr 2016 by Kevin Mack
SMACK Part 2 - Nobody can ice-skate uphill
20 Nov 2018 by CHill60
You have to provide the Domain name - see the documentation VisibleProjects Property[^] Instead of List proj = qctd.VisibleProjects; foreach (string desc in domainlist) { try foreach (string desc in domainlist) { List proj = qctd.VisibleProjects(desc);
2 Feb 2012 by Brian Blackman, Jeff Beehler, Willy-Peter Schaub, Bijan Javidi
How the Visual Studio ALM Rangers use Team Foundation Service to Get Ready for Visual Studio 11
11 Feb 2015 by Member 11446846
while doing the application development which tool is best one to implement developed and maintenance Projects ?
28 Jan 2016 by John_Williston
The need for a truly hybrid system, offering the best of DVCS and centralized features, has become clear. Perforce Helix is the first and only product that covers all the bases, leaving no stakeholder out in the cold.
29 Sep 2016 by Rasmus_Hald
Microsoft teamed up with a major independent software vendor (ISV) to identify and improve the vendor’s DevOps practices, with a focus on monitoring.
3 Oct 2016 by Metaphysico
Find Unit Tests that do not show up in test results.
29 Nov 2018 by SHASHANK Balaganchi
The Objective of this code is fetch the Cycle name when user select the specific Releases in Release Combobox. The code is fetching all the Cycles for a Project in HP ALM rather than on selecting the Release it should fetch the cycle specific to release. I have tried the below code . Could...
28 Nov 2018 by Richard MacCutchan
You are creating two List objects local to the two methods in your class, so neither is visible to the other. Make your List into a class variable so it exists for the life of the program.
10 Feb 2013 by Shining Dragon
Automated testing and continuous integration in TFS
25 Feb 2013 by Suresh Malluri
Project Structure and build scenarios
18 Aug 2016 by Metaphysico
How to clone Test Suites with Test Case References
11 Aug 2016 by Metaphysico
Setup required for Test Servers to run Coded UI Tests
24 Jun 2011 by Manning
A chapter excerpt from Agile ALM
21 Aug 2014 by Member 11027677
what is the difference between a node and a Subject Node in HP-ALM\QCI know that Both appear same , but cannot be used in the same way.Tried a lot of googling but of no use. Also check the OTA document but could not get better understanding. Can any one help.
21 Nov 2018 by SHASHANK Balaganchi
The following is the piece of code i have tried to list down the projects for a domain in ALM and i am getting the following error message Indexed property 'ITDConnection11.VisibleProjects' has non-optional arguments which must be provided The error message is shown on this line of code ...
21 Nov 2018 by SHASHANK Balaganchi
foreach (string desc in domainlist) { List proj = qctd.VisibleProjects[desc]; } The above code worked. The issue was , we have to use square brackets rather than paranthesis