|
More site info...
Team Foundation Server - Build Automation | Forum profile
|
|
Forum profile page for Team Foundation Server - Build Automation on http://msdn.microsoft.com.
This report page is the aggregated overview from a single forum: Team Foundation Server - Build Automation, located on the Message Board at http://msdn.microsoft.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Team Foundation Server - Build Automation" on the Message Board at http://msdn.microsoft.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Team Foundation Server - Build Automation:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
24
|
24
|
37
|
|
Post:
|
41
|
41
|
63
|
|
|
Team Foundation Server - Build Automation Posting activity graph:
|
Top authors during last week:
user's latest post:
How to find the path of the...
Published (2009-11-10 15:17:00)
Found the solution (see code below). It turns out that as long as I do my copies AfterCompile then when the build is complete, MSBUILD copies all files (including the ones I "manipulated") into the final drop location. < Target Name = " AfterCompile " > < TfbMtfConfigFilesTask FileToCopy = "...
user's latest post:
MSBuild error
Published (2009-11-11 03:35:00)
Hi Jerry, Not sure what's wrong from the message. Please check if the following paths are correct: C:\Documents and Settings\Administrator\Desktop\WebClient\Controls\Common\ C:\Documents and Settings\Administrator\Desktop\WebClient\Clients\CommonControls\General\ Do you have any other error or warning message from log? Hongye Sun [MSFT] MSDN Subscriber Support in Forum If you have any feedback on our support, please contact msdnmg @...
user's latest post:
AssemblyInfoTask does not update...
Published (2009-11-11 12:09:00)
Hmmm, that task is maintained in the MSBuild Extension Pack now and it has not been tested under TFS2010. Regardless of the TFSVersion, I wouldn't recommend using it for versioning. Thoughts here . Take a look at John Robbins blog post here too, which you may find helpful. Mike
user's latest post:
Customize Teambuild number same...
Published (2009-11-10 20:29:00)
Thanks Ewald. Our project is running on C# and I have found the better on the following http://www.woodwardweb.com/vsts/000417.html Marked As Answer by taibo19 Tuesday, November 10, 2009 8:29 PM
user's latest post:
Trigger a TFS Build after...
Published (2009-11-11 04:06:00)
Hi, For the first build, you can run a custom task in " AfterDropBuild " Target. The cusntom task can queue the webapp build using TFS API. For the webapp build, you can run a "Copy" task to copy the dlls to local folder in " BeforeCompile " Target. Best Regards, Ruiz
user's latest post:
Custom build task error
Published (2009-11-10 12:51:00)
If you want to know everything about MS Build: http://www.microsoft.com/learning/en/us/book.aspx?ID=12999&locale=en-us
user's latest post:
TF215085: An error occured while...
Published (2009-11-11 09:41:00)
Got it working although not sure what solved the problem. Here is what I did - IISReset the application tier server - Delete all files from "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files" on the application tier server - IISReset the application tier server - Refreshed the data caches on client computer as described here http://msdn.microsoft.com/en-us/library/cc716728.aspx - Removed all accounts...
user's latest post:
MSBuild error
Published (2009-11-11 03:20:00)
corrected
user's latest post:
CI Build is not creating DLL...
Published (2009-11-09 03:50:00)
Finally got solutions :). In my .rsp file I was using parameter SignAssembly=True, I just remove this parameter and tried to build and it's working fine.
user's latest post:
Build Agent Error
Published (2009-11-11 15:01:00)
When I try to right click a build in the Team Explorer and select Queue New Build, I get this error in the Build Explorer listed as a build step with a little red circle with an X. The build fails. TF215085: An error occurred while connecting to agent \direct2009\phqaodf1: TF215074: Failed to start build on agent '\direct2009\phqaodf1' because another build was unexpectedly in progress. Investigate the build agent status to...
|
|
|
|
Latest active threads on Team Foundation Server - Build Automation::
Started 3 days, 9 hours ago (2009-11-11 12:09:00)
by Mike Fourie
Hmmm, that task is maintained in the MSBuild Extension Pack now and it has not been tested under TFS2010. Regardless of the TFSVersion, I wouldn't recommend using it for versioning. Thoughts here . Take a look at John Robbins blog post here too, which you may find helpful. Mike
Started 3 days, 18 hours ago (2009-11-11 03:15:00)
by Hongye Sun
Hello, Thanks for reporting this issue. What's TFS edtion you are using? If it is workgroup, you should make sure that the TFSBuild account is in the licensed users group. Here is a similar issue: http://social. msdn.microsoft.com/forums/en-US/tfsb uild/thread/561ce2d0-2972-4be7-8c1e-aa4b817c5b7b/ Please let me know if it still doesn't work. Thanks,
Hongye Sun [MSFT] MSDN Subscriber ...
Started 3 days, 17 hours ago (2009-11-11 04:06:00)
by Ruiz Yi
Hi, For the first build, you can run a custom task in " AfterDropBuild " Target. The cusntom task can queue the webapp build using TFS API. For the webapp build, you can run a "Copy" task to copy the dlls to local folder in " BeforeCompile " Target. Best Regards, Ruiz
Started 3 days, 22 hours ago (2009-11-10 23:09:00)
by Mike Fourie
I think you posted the wrong line. What is the error? Mike
Started 3 days, 22 hours ago (2009-11-10 23:27:00)
by Mike Fourie
I'm guessing the bin folder is empty, so what you could do is use the MSBuild Extension Pack Folder-RemoveContent task to remove everything from bin, but leave the folder behind . < MSBuild.ExtensionPack.FileSystem.Folder TaskAction = "RemoveContent" Path = " \\DevServer\Services\TickerService\bin " /> Would be better to find out what has the handle, but it's ...
Started 5 days, 5 hours ago (2009-11-09 16:02:00)
by Ewald Hofman - Avanade
I implemented this, but the problem is that the target in which you can set the buildnumber is very early. So when you have increase the version number in the assebmlyinfo, the buildnumberoverride target is already processed. Basically the CoreGet target is not processed yet, so the first time it runs you don't even have the assemblyinfo. I have the following:
< UsingTask TaskName...
Started 4 days, 4 hours ago (2009-11-10 17:47:00)
by woodtool
Thanks for your help Hongye. When I created the new share I realized that I had the share set up incorrectly.
Started 4 days, 10 hours ago (2009-11-10 11:21:00)
by Mike Fourie
sounds like the $(DropLocation). See this for a bunch of useful information: TFS Build 2008 DeskSheet Mike
|
|
Hot threads for last week on Team Foundation Server - Build Automation::
Started 5 days, 5 hours ago (2009-11-09 16:02:00)
by Ewald Hofman - Avanade
I implemented this, but the problem is that the target in which you can set the buildnumber is very early. So when you have increase the version number in the assebmlyinfo, the buildnumberoverride target is already processed. Basically the CoreGet target is not processed yet, so the first time it runs you don't even have the assemblyinfo. I have the following:
< UsingTask TaskName...
Started 5 days, 5 hours ago (2009-11-09 16:31:00)
by Ewald Hofman - Avanade
Does changing AssemblyName into AssemblyFile in the UsingTask help?
Started 4 days, 10 hours ago (2009-11-10 11:21:00)
by Mike Fourie
sounds like the $(DropLocation). See this for a bunch of useful information: TFS Build 2008 DeskSheet Mike
Started 3 days, 22 hours ago (2009-11-10 23:09:00)
by Mike Fourie
I think you posted the wrong line. What is the error? Mike
Started 3 days, 18 hours ago (2009-11-11 03:15:00)
by Hongye Sun
Hello, Thanks for reporting this issue. What's TFS edtion you are using? If it is workgroup, you should make sure that the TFSBuild account is in the licensed users group. Here is a similar issue: http://social. msdn.microsoft.com/forums/en-US/tfsb uild/thread/561ce2d0-2972-4be7-8c1e-aa4b817c5b7b/ Please let me know if it still doesn't work. Thanks,
Hongye Sun [MSFT] MSDN Subscriber ...
Started 3 days, 17 hours ago (2009-11-11 04:06:00)
by Ruiz Yi
Hi, For the first build, you can run a custom task in " AfterDropBuild " Target. The cusntom task can queue the webapp build using TFS API. For the webapp build, you can run a "Copy" task to copy the dlls to local folder in " BeforeCompile " Target. Best Regards, Ruiz
Started 3 days, 9 hours ago (2009-11-11 12:09:00)
by Mike Fourie
Hmmm, that task is maintained in the MSBuild Extension Pack now and it has not been tested under TFS2010. Regardless of the TFSVersion, I wouldn't recommend using it for versioning. Thoughts here . Take a look at John Robbins blog post here too, which you may find helpful. Mike
Started 4 days, 14 hours ago (2009-11-10 07:13:00)
by Kim Carlsen
Hi Thanks. I've solved the problem by putting an ekstra get into afterget target. Regards kim
Started 5 days, 8 hours ago (2009-11-09 13:42:00)
by willowoak
In regards to the TFS id, I mean the user id used by Team Foundation server used to run our Continuous Integration builds. We used the following link to setup our interactive port for TFS: http://msdn.microsoft.com/en-us/library/bb399142.a spx If anyone has used TFS and WatiN in Continuous Integration successfully please let me know. In the meantime, I'll try some other forums.
Started 4 days, 4 hours ago (2009-11-10 17:47:00)
by woodtool
Thanks for your help Hongye. When I created the new share I realized that I had the share set up incorrectly.
|
|