<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>NuGetter Discussions Rss Feed</title><link>http://nugetter.codeplex.com/discussions</link><description>NuGetter Discussions Rss Description</description><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;I have the same problem explained in this post, could marknic please checkin the fix to the codeplex source control?&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;/div&gt;</description><author>0v3rCl0ck</author><pubDate>Sun, 12 May 2013 14:21:44 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130512022144P</guid></item><item><title>New Post: Suggestions on how to support .csproj Nuget pack targets?</title><link>http://nugetter.codeplex.com/discussions/440019</link><description>&lt;div style="line-height: normal;"&gt;Understood.  Following your suggestion, I tried something a bit different: Tackle some missing pieces in the core nuget project to make this easier.  I'm posting it here in case it's helpful.  In the end, I ended up with couple simple modification to the TFS 2012 Build Template:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Add 3 arguments to the build template for NuGet OutputPath (My local NuGet Repository), A path to a powershell script to run, and my nuget version info (minus the build part, which I pull out of the build name)&lt;/li&gt;
&lt;li&gt;
Add an activity after build/test execution that checks to see if the powershell script was specified.  If so, execute the powershell script which does all of the packaging and pushing.&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
I've submitted a pull request, available &lt;a href="https://nuget.codeplex.com/SourceControl/network/forks/jonstelly/nuget/contribution/4649" rel="nofollow"&gt;HERE&lt;/a&gt; for the NuGet project.  The second part of that pull request is to fix BasePath support for packing project files, which is what makes things so simple.&lt;br /&gt;
&lt;br /&gt;
Here's the powershell script I mention above (It's still pretty hack-y, but is functioning):&lt;br /&gt;
&lt;br /&gt;
Script:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;Param([string]$basePath, [string]$outPath, [string]$version, [string]$buildName)
Process
{
    [string[]]$projectFiles = @(
&amp;quot;Source\ProjectA\ProjectA.csproj&amp;quot;,
&amp;quot;Source\ProjectB\ProjectB.csproj&amp;quot;,
&amp;quot;Tests\ProjectA.Tests\ProjectA.Tests.csproj&amp;quot;,
&amp;quot;Tests\ProjectB.Tests\ProjectB.Tests.csproj&amp;quot;)

    function Get-ScriptDirectory
    {
        $Invocation = (Get-Variable MyInvocation -Scope 1).Value
        Split-Path $Invocation.MyCommand.Path
    }

    $scriptDir = Get-ScriptDirectory

    $nuget = 'nuget.exe'
    
    $solution = $buildName.Split('.')[0].Split('_')[0]
    $revision = $buildName.Split('.')[1]
    $verpart = [System.String]::Format('{0:yyMMdd}{1:00}', [System.DateTime]::Now, $revision)
    $version = &amp;quot;$version.$verpart&amp;quot;
        
    $outPath = &amp;quot;$outPath\$solution-$version&amp;quot;
    $outDir = New-Item -ItemType directory -Path $outPath

    Write-Output &amp;quot;Packaging $buildName ($version) from $basePath to $outPath&amp;quot;

    foreach($projectFile in $projectFiles)
    {
        $arguments = &amp;quot;pack `&amp;quot;$scriptDir\$projectFile`&amp;quot; -IncludeReferencedProjects -Version $version -BasePath `&amp;quot;$basePath`&amp;quot; -OutputDirectory `&amp;quot;$outPath`&amp;quot; -Prop Configuration=Debug&amp;quot;
        $proc = Start-Process -FilePath $nuget -ArgumentList (,$arguments) -NoNewWindow -Wait
    }
}&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>jonstelly</author><pubDate>Mon, 06 May 2013 20:36:34 GMT</pubDate><guid isPermaLink="false">New Post: Suggestions on how to support .csproj Nuget pack targets? 20130506083634P</guid></item><item><title>New Post: Suggestions on how to support .csproj Nuget pack targets?</title><link>http://nugetter.codeplex.com/discussions/440019</link><description>&lt;div style="line-height: normal;"&gt;The problem here is that the Nuget specific operations happening in the NuGetter template are post build of the project and operate on the outputs in the drop location. At this point you do not have access to the project source and therefore there is no csproj. I think it would take a fairly substantial rework of the workflow steps to achieve this, but I could be wrong.&lt;br /&gt;
&lt;br /&gt;
You could perhaps hack some way around this by using powershell in a pre-packaging step as this has access to the sources through the $tfsSourcesFolder variable. You could get the source into a pre-package folder in the drop location and then configure nuget through the template to execute against the csproj file, passing in the -Build switch as an additional command line option. &lt;br /&gt;
&lt;/div&gt;</description><author>cpedros</author><pubDate>Fri, 03 May 2013 22:34:43 GMT</pubDate><guid isPermaLink="false">New Post: Suggestions on how to support .csproj Nuget pack targets? 20130503103443P</guid></item><item><title>New Post: Multiple packages per build</title><link>http://nugetter.codeplex.com/discussions/436304</link><description>&lt;div style="line-height: normal;"&gt;did you create one that works with TFS 2010? If so could you share it please?&lt;br /&gt;
&lt;/div&gt;</description><author>tragichip</author><pubDate>Wed, 24 Apr 2013 15:23:11 GMT</pubDate><guid isPermaLink="false">New Post: Multiple packages per build 20130424032311P</guid></item><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;I have downloaded your source code an made a simple change to fix this...&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://content.screencast.com/users/MrHinsh/folders/Snagit/media/659955bb-e470-4866-88e5-d7b7f96e64c5/04.12.2013-12.06.png" alt="Image" /&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>MrHinsh</author><pubDate>Fri, 12 Apr 2013 19:07:19 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130412070719P</guid></item><item><title>New Post: Multiple packages per build</title><link>http://nugetter.codeplex.com/discussions/436304</link><description>&lt;div style="line-height: normal;"&gt;I ended up just creating my own build template to handle it. It is pretty easy once you get the hang of it.&lt;br /&gt;
&lt;/div&gt;</description><author>rushfrisby</author><pubDate>Fri, 12 Apr 2013 13:11:56 GMT</pubDate><guid isPermaLink="false">New Post: Multiple packages per build 20130412011156P</guid></item><item><title>New Post: Multiple packages per build</title><link>http://nugetter.codeplex.com/discussions/436304</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
I came one step further after finding the right place of the documentation (in the download package, which contains the newest doc version).&lt;br /&gt;
&lt;br /&gt;
Maybe you want to update the outdated link on the &lt;a href="https://nugetter.codeplex.com/documentation" rel="nofollow"&gt;Codeplex &amp;quot;Documentation&amp;quot; Tab&lt;/a&gt;, which points to an old doc version of 2011, and made me get confused :-)&lt;br /&gt;
&lt;br /&gt;
So I will try my luck! Thanks for providing a good peace of software!&lt;br /&gt;
&lt;br /&gt;
Cheers from Austria!&lt;br /&gt;
&lt;/div&gt;</description><author>mcmcod120</author><pubDate>Fri, 12 Apr 2013 08:04:23 GMT</pubDate><guid isPermaLink="false">New Post: Multiple packages per build 20130412080423A</guid></item><item><title>New Post: Suggestions on how to support .csproj Nuget pack targets?</title><link>http://nugetter.codeplex.com/discussions/440019</link><description>&lt;div style="line-height: normal;"&gt;I've currently got a batch file that builds all of my packages.  I use the NuGet functionality that lets me have a .nuspec sitting next to a .csproj file, and specify the .csproj file as my pack target instead of the .nuspec file.&lt;br /&gt;
&lt;br /&gt;
In trying to get nugetter set up on my Team Build server, I can't do this.  I've dug into the workflow a bit, and the primary issue seems to be that there are 2 activities that try to read the id element out of the .nuspec xml, and they fail if you specify the .csproj.&lt;br /&gt;
&lt;br /&gt;
I see a couple ways of solving this and wanted some advice on the best way to do it so that my patch would be applied.&lt;br /&gt;
&lt;br /&gt;
1) Add a boolean property to the process, something like &amp;quot;Pack project files if available&amp;quot; where the user configuring the build would still specify the .nuspec files in the multi-package list, etc... but for the last step where we invoke nuget to pack, we would check for the existence of a .csproj next to the .nuspec and use that if found.&lt;br /&gt;
2) Automatically detect if a .csproj file is specified as the pack target.  If so, transparently open/read the .nuspec file sitting next to it.&lt;br /&gt;
&lt;br /&gt;
I think #1 is the better option, as it doesn't rely on &amp;quot;magic&amp;quot; functionality that the user doesn't know about, but at the same time, #2 is similar to what nuget does itself when packaging.&lt;br /&gt;
&lt;br /&gt;
I'd like to start making the changes, any preference on which direction to head?  Any warnings on things I haven't mentioned that might be problematic?&lt;br /&gt;
&lt;/div&gt;</description><author>jonstelly</author><pubDate>Fri, 12 Apr 2013 04:21:15 GMT</pubDate><guid isPermaLink="false">New Post: Suggestions on how to support .csproj Nuget pack targets? 20130412042115A</guid></item><item><title>New Post: Problem updating to 2012</title><link>http://nugetter.codeplex.com/discussions/432956</link><description>&lt;div style="line-height: normal;"&gt;Installing PowerShell 3 on the controller from Joe's link fixed the problem for me.&lt;br /&gt;
&lt;/div&gt;</description><author>jonstelly</author><pubDate>Wed, 10 Apr 2013 15:54:06 GMT</pubDate><guid isPermaLink="false">New Post: Problem updating to 2012 20130410035406P</guid></item><item><title>New Post: Multiple packages per build</title><link>http://nugetter.codeplex.com/discussions/436304</link><description>&lt;div style="line-height: normal;"&gt;I am in the same or similar situation that I want to &lt;strong&gt;create multiple nuget packages, but with only 1 build definition&lt;/strong&gt;. &lt;br /&gt;
&lt;br /&gt;
I am not sure how to accomplish this. Above, you point to a section &amp;quot;Multiple Package Build&amp;quot; in the documentation, but I am not sure which part you mean, because I did not find this section, I have searched in this doc:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://download.codeplex.com/download?ProjectName=nugetter&amp;amp;DownloadId=251922" rel="nofollow"&gt;http://download.codeplex.com/download?ProjectName=nugetter&amp;amp;DownloadId=251922&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Did I understand right, that in the property &lt;strong&gt;&amp;quot;NuSpec File Path&amp;quot;&lt;/strong&gt; of the build template (&amp;quot;NuGetterMultiPkgBuildVersionedTemplate20.xaml&amp;quot;), I can use a wildcard expression (e.g. &amp;quot;**.*.nuspec&amp;quot;), and the build template will pack one nuget package for each nuspec file it has found (in the droplocation)? (According to &lt;a href="https://nugetter.codeplex.com/discussions/278173" rel="nofollow"&gt;this thread&lt;/a&gt;).&lt;br /&gt;
&lt;br /&gt;
Trying to use a wildcard expression &amp;quot;**.*.nuspec&amp;quot;, I get an FileNotFoundException in activity &amp;quot;Get the file path to the NuSpec file/Get NuGetterVPackageId&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
I do not know whether I am on the right way, I appreciate it to be pointed to the proper direction, thank you.&lt;br /&gt;
&lt;br /&gt;
PS: I am using VS2012 and TFS2012&lt;br /&gt;
&lt;/div&gt;</description><author>mcmcod120</author><pubDate>Wed, 10 Apr 2013 14:52:24 GMT</pubDate><guid isPermaLink="false">New Post: Multiple packages per build 20130410025224P</guid></item><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;That information definitely helps.&lt;span style=""&gt;
&lt;/span&gt;I haven’t had time recently to look at the code or reply because of several large projects consuming all of my time.&lt;span style=""&gt;
&lt;/span&gt;&lt;span style=""&gt;&lt;/span&gt;I tried to grant someone else access to the code on CodePlex once and it turned into more than it was worth at the time.&lt;span style=""&gt;
&lt;/span&gt;Microsoft legal thing I guess.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;I am going to try to create a GitHub repo today and get the code pushed there.&lt;span style=""&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;I will let you know.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;Mark&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;
&lt;div style="border:none; border-top:solid #E1E1E1 1.0pt; padding:3.0pt 0in 0in 0in"&gt;
&lt;p&gt;&lt;a name="_MailOriginal"&gt;&lt;b&gt;&lt;span style="font-size:11.0pt; font-family:"&gt;&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>marknic</author><pubDate>Fri, 05 Apr 2013 14:15:38 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130405021538P</guid></item><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;If you have a local build server plugged into the cloud TFS then you can debug... however all that needs to happen is that the packaging happens against &amp;quot;c:\b\binaries\&amp;quot; rather than the Drop Location.... simples...&lt;br /&gt;
&lt;br /&gt;
Would it be possible to give me access to your repository and I can fix it :) saves me from downloading the source seperatly...&lt;br /&gt;
&lt;/div&gt;</description><author>MrHinsh</author><pubDate>Thu, 04 Apr 2013 17:07:47 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130404050747P</guid></item><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;&lt;strong&gt;marknic wrote:&lt;/strong&gt;&lt;br /&gt;
&lt;blockquote&gt;
This is going to be harder than I thought.&amp;nbsp; In VS2012 you can't see the &amp;quot;Copy build output to the following Source Control folder:&amp;quot; option.&amp;nbsp; In VS2010 you can see it however you can't use it.&amp;nbsp; Apparently, it is really&amp;nbsp;only an option in a hosted environment so I won't be able to reproduce the situation in a controlled environment. Uggh.&lt;br /&gt;
&lt;/blockquote&gt;
Do you have an update?&lt;br /&gt;
&lt;/div&gt;</description><author>MrHinsh</author><pubDate>Mon, 01 Apr 2013 03:38:25 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130401033825A</guid></item><item><title>New Post: Versioning of Dependend Packages</title><link>http://nugetter.codeplex.com/discussions/437595</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;br /&gt;
&lt;br /&gt;
First of all, thank you for this project! It saved me a lot of work! :)&lt;br /&gt;
&lt;br /&gt;
We build a &amp;quot;Core&amp;quot; that is used by a number of projects. We use NuGetter to arrange multiple packages out of this solution. However some of the packages depend on other packages in the core:&lt;br /&gt;
&lt;br /&gt;
So we have such a structure:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Common&lt;/li&gt;
&lt;li&gt;Helper&lt;/li&gt;
&lt;li&gt;
SystemModule&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
We build 3 different packages: &lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Core.Common&lt;/li&gt;
&lt;li&gt;Core.Helper&lt;/li&gt;
&lt;li&gt;
Core.SystemModule&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
The nuget package specs are like this:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Core.Common&lt;/li&gt;
&lt;li&gt;
No Dependencies&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
-Core.Helper&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
Depends on Core.Common (&amp;quot;2.0.0.0&amp;quot;)&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
-Core.SystemModule&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;
Depends on Core.Helper (&amp;quot;2.0.0.0&amp;quot;)&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
However building of the packages work, but if i update the package Core.SystemModule in another solution (speeking from 2.0.0 to 2.0.1) the references to Helper and Common are not updated. I guess this happens cause the dependency gets not updates cause of the &amp;quot;2.0.0.0&amp;quot; part in the dependency part in the spec files.&lt;br /&gt;
&lt;br /&gt;
So my question is, is there a way to update the dependency version of some packages? (or use variables in the spec files?)&lt;br /&gt;
&lt;br /&gt;
Thanks, Manuel.&lt;br /&gt;
&lt;/div&gt;</description><author>biohazard999</author><pubDate>Fri, 22 Mar 2013 08:45:36 GMT</pubDate><guid isPermaLink="false">New Post: Versioning of Dependend Packages 20130322084536A</guid></item><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;The drop folder is only in source control. You would need to do the packaging pre-drop on the build server...&lt;br /&gt;
&lt;/div&gt;</description><author>MrHinsh</author><pubDate>Tue, 19 Mar 2013 19:56:12 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130319075612P</guid></item><item><title>New Post: Using nugetter with a hosted build controller.</title><link>http://nugetter.codeplex.com/discussions/429967</link><description>&lt;div style="line-height: normal;"&gt;Is there  a solution for this? I am running into it now as well...&lt;br /&gt;
&lt;/div&gt;</description><author>MrHinsh</author><pubDate>Tue, 19 Mar 2013 18:29:05 GMT</pubDate><guid isPermaLink="false">New Post: Using nugetter with a hosted build controller. 20130319062905P</guid></item><item><title>New Post: Nugetter versioning question</title><link>http://nugetter.codeplex.com/discussions/437114</link><description>&lt;div style="line-height: normal;"&gt;Thank you so much, that completely solves my problem. :)&lt;br /&gt;
&lt;/div&gt;</description><author>osikes</author><pubDate>Tue, 19 Mar 2013 18:00:14 GMT</pubDate><guid isPermaLink="false">New Post: Nugetter versioning question 20130319060014P</guid></item><item><title>New Post: Nugetter versioning question</title><link>http://nugetter.codeplex.com/discussions/437114</link><description>&lt;div style="line-height: normal;"&gt;osikes,&lt;br /&gt;
&lt;br /&gt;
I appreciate the compliment, thanks!&lt;br /&gt;
&lt;br /&gt;
What you are trying to do is easy to set up.  The &amp;quot;b&amp;quot; pattern takes its value from the build number that gets set as a result of the Build Number Format in the Build Definition.  The default configuration for that is &amp;quot;$(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.r)&amp;quot; where the &amp;quot;$(Rev:.r)&amp;quot; is the build number.  Any time the non-build number value changes, the build number resets.  Because it has $(Date:yyyyMMdd) in it, it will change every night at midnight and the build number goes back to 1.&lt;br /&gt;
&lt;br /&gt;
So, if you modify the Build Number Format to haves a &amp;quot;more static value&amp;quot; in it, the build number will simply continue to increment on every build.  When you want the build number to reset, just modify the Build Number Format. You could put a name in there or a high level version number - anything you want really.  Just make sure the &amp;quot;$(Rev:.r)&amp;quot; is at the end so NuGetter will have a value to work with.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Mark&lt;br /&gt;
&lt;/div&gt;</description><author>marknic</author><pubDate>Tue, 19 Mar 2013 13:50:22 GMT</pubDate><guid isPermaLink="false">New Post: Nugetter versioning question 20130319015022P</guid></item><item><title>New Post: Nugetter versioning question</title><link>http://nugetter.codeplex.com/discussions/437114</link><description>&lt;div style="line-height: normal;"&gt;To start off, I love nugetter. At my office we're able to support multiple internal nuget packages with tfs builds because of this.&lt;br /&gt;
&lt;br /&gt;
I have ran into an issue that I would really appreciate some clarification/ help on. I have tfs build definition using the nugettermultipkgbuildversionedtemplate20.xaml. My goal is to kick off a build, and then let the template create the nuget package with an auto incremented version number. Currently I have set the version patter to 1.0.b. This appears to work great as it is auto-incrementing on any given day, but it seems every night that this resets. Back to 1.0.0. So essentially each day the version number has reset. &lt;br /&gt;
&lt;br /&gt;
What mechanism or concept am I missing to allow tfs to maintain the current nuget version number? &lt;br /&gt;
&lt;br /&gt;
Any help or comments would be greatly appreciated thanks. &lt;br /&gt;
&lt;/div&gt;</description><author>osikes</author><pubDate>Mon, 18 Mar 2013 21:42:54 GMT</pubDate><guid isPermaLink="false">New Post: Nugetter versioning question 20130318094254P</guid></item><item><title>New Post: Multiple packages per build</title><link>http://nugetter.codeplex.com/discussions/436304</link><description>&lt;div style="line-height: normal;"&gt;The build template is specific to 2012.  There are a couple additional workflow arguments that are used as part of an updated build process.  The activity could be used in 2010 but an &amp;quot;older&amp;quot; base build template would be needed.&lt;br /&gt;
&lt;br /&gt;
Mark&lt;br /&gt;
&lt;/div&gt;</description><author>marknic</author><pubDate>Tue, 12 Mar 2013 18:59:53 GMT</pubDate><guid isPermaLink="false">New Post: Multiple packages per build 20130312065953P</guid></item></channel></rss>