<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>tfsbuildextensions Discussions Rss Feed</title><link>http://tfsbuildextensions.codeplex.com/Thread/List.aspx</link><description>tfsbuildextensions Discussions Rss Description</description><item><title>New Post: TF30063: You are not authorized to access error when using TFSSource when checking out a file</title><link>http://tfsbuildextensions.codeplex.com/discussions/431247</link><description>&lt;div style="line-height: normal;"&gt;I am having the same issue. Any thoughts on how to get this working using the activity?&lt;br /&gt;
&lt;/div&gt;</description><author>waelhamze</author><pubDate>Thu, 23 May 2013 19:09:45 GMT</pubDate><guid isPermaLink="false">New Post: TF30063: You are not authorized to access error when using TFSSource when checking out a file 20130523070945P</guid></item><item><title>New Post: AssemblyInformationalVersion and TfsVersion activity</title><link>http://tfsbuildextensions.codeplex.com/discussions/443489</link><description>&lt;div style="line-height: normal;"&gt;Thanks Mike&lt;br /&gt;
&lt;br /&gt;
I'm a bit lost with the unit tests.  When I get my head around it, I'll submit it.&lt;br /&gt;
&lt;br /&gt;
Thanks again&lt;br /&gt;
&lt;br /&gt;
Neil&lt;br /&gt;
&lt;/div&gt;</description><author>ludwighoff</author><pubDate>Wed, 22 May 2013 09:35:35 GMT</pubDate><guid isPermaLink="false">New Post: AssemblyInformationalVersion and TfsVersion activity 20130522093535A</guid></item><item><title>New Post: installing tfsbuildextensions to GAC</title><link>http://tfsbuildextensions.codeplex.com/discussions/317970</link><description>&lt;div style="line-height: normal;"&gt;I guess you never heard of SMS, SCOM or LanDesk.&lt;br /&gt;
&lt;br /&gt;
You don't have to log on to a machine to install on the GAC, you just generate an MSI and deploy it to any machines you want.&lt;br /&gt;
&lt;/div&gt;</description><author>jmzamudio</author><pubDate>Sat, 18 May 2013 01:07:12 GMT</pubDate><guid isPermaLink="false">New Post: installing tfsbuildextensions to GAC 20130518010712A</guid></item><item><title>New Post: AssemblyInformationalVersion and TfsVersion activity</title><link>http://tfsbuildextensions.codeplex.com/discussions/443489</link><description>&lt;div style="line-height: normal;"&gt;Ah, I was looking in the wrong place. The activity doesn't support it at the moment. Feel free to submit a patch thanks Neil.&lt;br /&gt;
&lt;br /&gt;
Mike&lt;br /&gt;
&lt;/div&gt;</description><author>mikeFourie</author><pubDate>Wed, 15 May 2013 07:50:24 GMT</pubDate><guid isPermaLink="false">New Post: AssemblyInformationalVersion and TfsVersion activity 20130515075024A</guid></item><item><title>New Post: Please sign the assemblies</title><link>http://tfsbuildextensions.codeplex.com/discussions/443644</link><description>&lt;div style="line-height: normal;"&gt;I've seen other posts about signing the extension assemblies but I’m posting a new thread to elaborate on the reasons and to give a bump to the request.  Note that this post is related to using the extensions on a dev system for configuring a build template but it seems it would benefit deployment on a build server as well.&lt;br /&gt;
&lt;br /&gt;
Primarily, the assemblies could be deployed to the GAC if they were signed.  There are a few good reasons for doing this on a dev system:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;
Visual Studio toolbox references could be configured to reference the assemblies from the GAC instead of as “loose” files.  The recommended practice of adding these to the toolbox from the “container project” is a bad practice because toolbox references are system-wide.  That is, they are not solution or project specific.  Visual Studio toolbox references to files in a specific project are therefore inappropriate.  But it is also fragile because the referenced project may get changed in ways that would orphan or break the Visual Studio reference and that would affect build template configuration in all other solutions.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
Build template XAML references to extension activities would not have to be resolved to the container project’s assemblies.  If the extension assemblies were in the GAC (and the activity was creating by a toolbox item that referenced a GAC assembly) the XAML references would be set up with a strong name reference and they would resolve to the assemblies in the GAC.  The benefit to this is the container project would be unnecessary.  The build template could then be added to the solution as a solution file instead of a project file.&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
To reiterate, the container project becomes unnecessary if the extension assemblies are in the GAC.  Having that container project in a solution simply to help resolve XAML references is undesirable.&lt;br /&gt;
&lt;/li&gt;
&lt;/ol&gt;
It would be nice to have an automated deployment process for these but that isn’t necessary.  It’s easy enough to add assemblies to the GAC via gacutil.  It would be ideal, for the time being, to just have them signed.&lt;br /&gt;
&lt;br /&gt;
Regardless, thanks to the contributors and coordinators of this project.  Your time is appreciated!&lt;br /&gt;
&lt;/div&gt;</description><author>RobertN</author><pubDate>Tue, 14 May 2013 21:03:18 GMT</pubDate><guid isPermaLink="false">New Post: Please sign the assemblies 20130514090318P</guid></item><item><title>New Post: AssemblyInformationalVersion and TfsVersion activity</title><link>http://tfsbuildextensions.codeplex.com/discussions/443489</link><description>&lt;div style="line-height: normal;"&gt;Hi Mike,&lt;br /&gt;
&lt;br /&gt;
the wrong place I have no doubt.  :-)  (I'm new to build xaml).&lt;br /&gt;
&lt;br /&gt;
I am looking at TfsVersion.cs (&lt;a href="https://tfsbuildextensions.codeplex.com/SourceControl/latest#1606003" rel="nofollow"&gt;https://tfsbuildextensions.codeplex.com/SourceControl/latest#1606003&lt;/a&gt;) &lt;br /&gt;
&lt;br /&gt;
and I can't see the public InOutArgument&amp;lt;string&amp;gt; AssemblyInformationalVersion you mention...&lt;br /&gt;
&lt;br /&gt;
What I see in the VS xaml UI seems to correspond to:&lt;br /&gt;
&lt;br /&gt;
public bool SetAssemblyFileVersion&lt;br /&gt;
public bool SetAssemblyVersion&lt;br /&gt;
&lt;br /&gt;
public InOutArgument&amp;lt;string&amp;gt; Version&lt;br /&gt;
&lt;br /&gt;
which I can see.&lt;br /&gt;
&lt;br /&gt;
So, what I &lt;em&gt;think&lt;/em&gt; I am after is:&lt;br /&gt;
&lt;br /&gt;
public bool SetAssemblyInformationalVersion&lt;br /&gt;
&lt;br /&gt;
Best regards&lt;br /&gt;
&lt;br /&gt;
Neil&lt;br /&gt;
&lt;/div&gt;</description><author>ludwighoff</author><pubDate>Tue, 14 May 2013 08:44:15 GMT</pubDate><guid isPermaLink="false">New Post: AssemblyInformationalVersion and TfsVersion activity 20130514084415A</guid></item><item><title>New Post: AssemblyInformationalVersion and TfsVersion activity</title><link>http://tfsbuildextensions.codeplex.com/discussions/443489</link><description>&lt;div style="line-height: normal;"&gt;Hey Neil&lt;br /&gt;
&lt;br /&gt;
Where are you looking? I see it in the code&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    public InOutArgument&amp;lt;string&amp;gt; AssemblyInformationalVersion { get; set; }
&lt;/code&gt;&lt;/pre&gt;

Mike&lt;br /&gt;
&lt;/div&gt;</description><author>mikeFourie</author><pubDate>Tue, 14 May 2013 06:58:26 GMT</pubDate><guid isPermaLink="false">New Post: AssemblyInformationalVersion and TfsVersion activity 20130514065826A</guid></item><item><title>New Post: AssemblyInformationalVersion and TfsVersion activity</title><link>http://tfsbuildextensions.codeplex.com/discussions/443489</link><description>&lt;div style="line-height: normal;"&gt;Hi Chaps&lt;br /&gt;
&lt;br /&gt;
I can see options for FileVersion and Version, but not one for InformationalVersion.  Do I need to patch this?&lt;br /&gt;
&lt;br /&gt;
Cheers and best&lt;br /&gt;
&lt;br /&gt;
Neil&lt;br /&gt;
&lt;/div&gt;</description><author>ludwighoff</author><pubDate>Mon, 13 May 2013 15:22:38 GMT</pubDate><guid isPermaLink="false">New Post: AssemblyInformationalVersion and TfsVersion activity 20130513032238P</guid></item><item><title>New Post: Publish website</title><link>http://tfsbuildextensions.codeplex.com/discussions/442810</link><description>&lt;div style="line-height: normal;"&gt;Tried using RoboCopy but always get:&lt;br /&gt;
&lt;em&gt;Exception Message: Return Code 16. Serious error. RoboCopy did not copy any files. This is either a usage error or an error due to insufficient access privileges on the source or destination directories. (type FailingBuildException)&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
Tried the standard CopyDirectory and that works but doesn't fail the build if it has problems copying the files which is what I require&lt;br /&gt;
&lt;/div&gt;</description><author>cjp</author><pubDate>Thu, 09 May 2013 08:06:44 GMT</pubDate><guid isPermaLink="false">New Post: Publish website 20130509080644A</guid></item><item><title>New Post: Publish website</title><link>http://tfsbuildextensions.codeplex.com/discussions/442810</link><description>&lt;div style="line-height: normal;"&gt;OK.  Figured out that it is already doing this to the folder bin_PublishedWebsites_SolutionName_&lt;br /&gt;
&lt;br /&gt;
All I need to do now is figure out how to copy these files to a drop folder&lt;br /&gt;
&lt;/div&gt;</description><author>cjp</author><pubDate>Tue, 07 May 2013 15:23:25 GMT</pubDate><guid isPermaLink="false">New Post: Publish website 20130507032325P</guid></item><item><title>New Post: Publish website</title><link>https://tfsbuildextensions.codeplex.com/discussions/442810</link><description>&lt;div style="line-height: normal;"&gt;I am trying to set-up a build process template that will build our ASP.NET / MVC web application and then perform a “Publish Web” to file system.  I want to be able to specify where the website will be published, this will then be copied to the web server manually by QA&lt;br /&gt;
Does anyone have a template based on the build extensions that will do this?&lt;br /&gt;
&lt;br /&gt;
Thanks in advance&lt;br /&gt;
&lt;/div&gt;</description><author>cjp</author><pubDate>Tue, 07 May 2013 13:48:17 GMT</pubDate><guid isPermaLink="false">New Post: Publish website 20130507014817P</guid></item><item><title>New Post: installing tfsbuildextensions to GAC</title><link>http://tfsbuildextensions.codeplex.com/discussions/317970</link><description>&lt;div style="line-height: normal;"&gt;I'd like to have strong names to be able to easily add these activities to the toolbox. It is how I use TFS Versioning (also on CodePlex), and it works great.&lt;br /&gt;
&lt;/div&gt;</description><author>Jorrit</author><pubDate>Fri, 03 May 2013 15:46:23 GMT</pubDate><guid isPermaLink="false">New Post: installing tfsbuildextensions to GAC 20130503034623P</guid></item><item><title>New Post: Character not valid Assemblyinfo</title><link>http://tfsbuildextensions.codeplex.com/discussions/399950</link><description>&lt;div style="line-height: normal;"&gt;WORKAROUND (Invalid L-value expression error):&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Define a string variable myVar&lt;/li&gt;
&lt;li&gt;Use an &amp;quot;Assign&amp;quot; activity (tab &amp;quot;Primitives&amp;quot;) to assign the token string to myVar&lt;/li&gt;
&lt;li&gt;Use myVar instead of the string when configuring the AssemblyInfo activity&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;</description><author>FriedlTh</author><pubDate>Wed, 17 Apr 2013 14:31:41 GMT</pubDate><guid isPermaLink="false">New Post: Character not valid Assemblyinfo 20130417023141P</guid></item><item><title>New Post: BuildReport &amp; CompareLabels - Getting started </title><link>http://tfsbuildextensions.codeplex.com/discussions/439769</link><description>&lt;div style="line-height: normal;"&gt;Can Someone create or post some HowTo's with details for the Both Actvities,&lt;br /&gt;
for example where should be the xslt template for the build report ?, &lt;br /&gt;
or how can an be build an report with changes between 2 release builds, when are in multiple branches ?&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
johannes&lt;br /&gt;
&lt;/div&gt;</description><author>dumian</author><pubDate>Wed, 10 Apr 2013 11:27:33 GMT</pubDate><guid isPermaLink="false">New Post: BuildReport &amp; CompareLabels - Getting started  20130410112733A</guid></item><item><title>New Post: Azure Service Management Reference</title><link>http://tfsbuildextensions.codeplex.com/discussions/349635</link><description>&lt;div style="line-height: normal;"&gt;I think we try stick to shipping just our bits and avoid any potential redistribution right pitfalls.&lt;br /&gt;
&lt;br /&gt;
Mike&lt;br /&gt;
&lt;/div&gt;</description><author>mikeFourie</author><pubDate>Fri, 05 Apr 2013 08:02:20 GMT</pubDate><guid isPermaLink="false">New Post: Azure Service Management Reference 20130405080220A</guid></item><item><title>New Post: Azure Service Management Reference</title><link>http://tfsbuildextensions.codeplex.com/discussions/349635</link><description>&lt;div style="line-height: normal;"&gt;Any reason this dll isn't included with the downloadable binaries?&lt;br /&gt;
&lt;/div&gt;</description><author>mikef777</author><pubDate>Thu, 04 Apr 2013 20:32:44 GMT</pubDate><guid isPermaLink="false">New Post: Azure Service Management Reference 20130404083244P</guid></item><item><title>New Post: TFSSource and ItemspecList property</title><link>http://tfsbuildextensions.codeplex.com/discussions/438455</link><description>&lt;div style="line-height: normal;"&gt;I want to create AssmblyInfo auto update sequence in my build.&lt;br /&gt;
For this purposes I want to find all AssemblyInfo files in some TargetFolder directory, checkout all this files, update version and check-in theme back.&lt;br /&gt;
AssemblyInfo activity supports string array as input parameter, but TFSSource activity doesn't.&lt;br /&gt;
As I can see from TFSSource.cs file, you have an ItemspecList property, but it hidden.&lt;br /&gt;
&lt;br /&gt;
Are you going to activate it in the next release?&lt;br /&gt;
&lt;/div&gt;</description><author>KinslayeR</author><pubDate>Fri, 29 Mar 2013 15:48:59 GMT</pubDate><guid isPermaLink="false">New Post: TFSSource and ItemspecList property 20130329034859P</guid></item><item><title>New Post: IIS7 - CreateInstance</title><link>http://tfsbuildextensions.codeplex.com/discussions/436769</link><description>&lt;div style="line-height: normal;"&gt;I am getting this error, does any one know the solution? I am trying to stop IIS and am using the local Administrator account. &lt;br /&gt;
&lt;br /&gt;
I am using TfsBuildExtensions.Activities.IIS7 which uses Microsoft.Web.Administration.&lt;br /&gt;
&lt;br /&gt;
Exception Message: Error: Retrieving the COM class factory for remote component with CLSID {2B72133B-3F5B-4602-8952-803546CE3344} from machine [SERVER_NAME] failed due to the following error: 80070005 [SERVER_NAME].. Stack Trace:    at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean&amp;amp; canBeCached, RuntimeMethodHandleInternal&amp;amp; ctor, Boolean&amp;amp; bNeedSecurityCheck)&lt;br /&gt;
&lt;/div&gt;</description><author>debonairdc</author><pubDate>Fri, 15 Mar 2013 13:37:31 GMT</pubDate><guid isPermaLink="false">New Post: IIS7 - CreateInstance 20130315013731P</guid></item><item><title>New Post: StyleCop does not encounter errors during TFS Build</title><link>http://tfsbuildextensions.codeplex.com/discussions/436695</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
I am having a problem in my TFS Build. I've integrated the StyleCop Build Extension on a TFS Server 2012 and initially it worked great but after a while StyleCop stopped checking files.&lt;br /&gt;
&lt;br /&gt;
I've downloaded the StyleCop activity and added some custom logs, but all seemed to be fine.&lt;br /&gt;
Only the call to the AddSourceCode Methode returned False.&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;var result = console.Core.Environment.AddSourceCode(project, inputSourceLocation, null);
&lt;/code&gt;&lt;/pre&gt;

Is this behavior OK? &lt;br /&gt;
Are there any issues with a large amount of files? We have currently more then 2000 file to check.&lt;br /&gt;
&lt;br /&gt;
The call of the StyleCopConsole.Start() returned true and everything seemed to be OK.&lt;br /&gt;
Any suggestions to solve my problem?&lt;br /&gt;
&lt;br /&gt;
Thx&lt;br /&gt;
Markus&lt;br /&gt;
&lt;/div&gt;</description><author>SchneiderM</author><pubDate>Thu, 14 Mar 2013 21:17:50 GMT</pubDate><guid isPermaLink="false">New Post: StyleCop does not encounter errors during TFS Build 20130314091750P</guid></item><item><title>New Post: Auto refresh in the stand alone application</title><link>http://tfsbuildextensions.codeplex.com/discussions/434681</link><description>&lt;div style="line-height: normal;"&gt;Hi Jacob and Mike,&lt;br /&gt;
&lt;br /&gt;
It worked, thanks!&lt;br /&gt;
&lt;br /&gt;
/Magnus&lt;br /&gt;
&lt;/div&gt;</description><author>MagnusT</author><pubDate>Tue, 12 Mar 2013 17:45:21 GMT</pubDate><guid isPermaLink="false">New Post: Auto refresh in the stand alone application 20130312054521P</guid></item></channel></rss>