<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SharePoint Visual Studio Project Templates</title><link>http://sptemplateland.codeplex.com/project/feeds/rss</link><description>A project to maintain a set of Visual Studio project templates which assist in the creation of WSS v3 &amp;#47; MOSS solution deployment packages.      </description><item><title>Source code checked in, #94877</title><link>http://sptemplateland.codeplex.com/SourceControl/changeset/changes/94877</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 22:38:35 GMT</pubDate><guid isPermaLink="false">Source code checked in, #94877 20121001103835P</guid></item><item><title>Source code checked in, #94876</title><link>http://sptemplateland.codeplex.com/SourceControl/changeset/changes/94876</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 22:31:06 GMT</pubDate><guid isPermaLink="false">Source code checked in, #94876 20121001103106P</guid></item><item><title>Source code checked in, #57274</title><link>http://sptemplateland.codeplex.com/SourceControl/changeset/changes/57274</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Wed, 28 Jul 2010 22:13:23 GMT</pubDate><guid isPermaLink="false">Source code checked in, #57274 20100728101323P</guid></item><item><title>New Post: Upgrade web part</title><link>http://www.codeplex.com/sptemplateland/Thread/View.aspx?ThreadId=45282</link><description>&lt;div style="line-height: normal;"&gt;I've used the Web Part Template project to create a new web part, and rolled this out to our development server using the generated &amp;quot;.wsp&amp;quot; and Setup file.&amp;nbsp; This all works fine.&lt;br&gt;
&lt;br&gt;
However if I then decide to make changes to the web part code, and upgrade it on the server, the &amp;quot;.webpart&amp;quot; file is not updated in web sites that use this web part. &lt;br&gt;
&lt;br&gt;
If I manually update the &amp;quot;.webpart&amp;quot; file then existing web parts fall over with the following error: &amp;quot;&lt;em&gt;&lt;span&gt;Web Part Error:
&lt;/span&gt;A Web Part or Web Form Control on this Page cannot be displayed or
imported. The type could not be found or it is not registered as safe&lt;/em&gt;.&amp;quot;&amp;nbsp; &lt;br&gt;
&lt;br&gt;
This error presumably comes up because the &amp;quot;.webpart&amp;quot; file version doesn't match the version of the web part that was added to the page.&lt;br&gt;
&lt;br&gt;
What am I doing wrong - what's the correct way of upgrading a web part in SharePoint using the SharePointInstaller?&lt;br&gt;
&lt;/div&gt;</description><author>dangallo</author><pubDate>Mon, 26 Jan 2009 17:03:22 GMT</pubDate><guid isPermaLink="false">New Post: Upgrade web part 20090126050322P</guid></item><item><title>Created Issue: Using with TFS Team Build - Problem with CreateCabDDF.vbs</title><link>http://www.codeplex.com/sptemplateland/WorkItem/View.aspx?WorkItemId=8591</link><description>If you build this WSP project locally on a development PC all is fine. However &amp;#40;depending upon you project&amp;#41; it may fail on Team Build, well actually not fail just pause forever. This due to the way that Team Build checks out folders. The WSP project has a folder structure you drop files in that the VBScript files scan to create the manifest and then the WSP. If one of these directories is empty then it is not created on the build box and the VBScript stalls.&lt;br /&gt;&lt;br /&gt;The solution is simply just add an extra folder exists check in the CreateCabDDF.vbs file&amp;#8217;s EnumFolder method&lt;br /&gt;&lt;br /&gt;sub EnumFolder&amp;#40;sFolder, sRelativePath&amp;#41;&lt;br /&gt;    dim oFolder, oFolders, oSub, oFile&lt;br /&gt;    &lt;br /&gt;    rem this is the extra line&lt;br /&gt;    If oFS.FolderExists&amp;#40;sFolder&amp;#41; Then&lt;br /&gt;&lt;br /&gt;        set oFolder &amp;#61; oFS.GetFolder&amp;#40;sFolder&amp;#41;&lt;br /&gt;    &lt;br /&gt;        if &amp;#40;sRelativePath &amp;#61; &amp;#34;TEMPLATE&amp;#34;&amp;#41; then sRelativePath &amp;#61; &amp;#34;&amp;#34;&lt;br /&gt;        if &amp;#40;sRelativePath &amp;#61; &amp;#34;FEATURES&amp;#34;&amp;#41; then sRelativePath &amp;#61; &amp;#34;&amp;#34;&lt;br /&gt;    &lt;br /&gt;        if &amp;#40;sRelativePath &amp;#60;&amp;#62; &amp;#34;&amp;#34;&amp;#41; then sRelativePath &amp;#61; sRelativePath &amp;#43; &amp;#34;&amp;#92;&amp;#34;&lt;br /&gt;    &lt;br /&gt;        for each oFile in oFolder.Files&lt;br /&gt;            oDDF.WriteLine &amp;#34;&amp;#34;&amp;#34;&amp;#34; &amp;#43; oFile.Path &amp;#43; &amp;#34;&amp;#34;&amp;#34;&amp;#34; &amp;#43; vbTab &amp;#43; &amp;#34;&amp;#34;&amp;#34;&amp;#34; &amp;#43; sRelativePath &amp;#43; oFile.Name &amp;#43; &amp;#34;&amp;#34;&amp;#34;&amp;#34;&lt;br /&gt;        next&lt;br /&gt;&lt;br /&gt;        if &amp;#40;sRelativePath &amp;#60;&amp;#62; &amp;#34;&amp;#34; and InStr&amp;#40;1, sFolder, &amp;#34;FEATURES&amp;#34;&amp;#41; &amp;#62; 0&amp;#41; then&lt;br /&gt;            sRelativePath &amp;#61; &amp;#34;FEATURES&amp;#92;&amp;#34; &amp;#43; sRelativePath&lt;br /&gt;        end if&lt;br /&gt;&lt;br /&gt;       for each oSub in oFolder.SubFolders&lt;br /&gt;            EnumFolder oSub.Path, sRelativePath &amp;#43; oSub.Name&lt;br /&gt;       next&lt;br /&gt;    &lt;br /&gt;      end if&lt;br /&gt;    &lt;br /&gt;end sub&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For more detail see &amp;#40;http&amp;#58;&amp;#47;&amp;#47;blogs.blackmarble.co.uk&amp;#47;blogs&amp;#47;rfennell&amp;#47;archive&amp;#47;2008&amp;#47;12&amp;#47;19&amp;#47;tfs-teambuild-and-sharepoint-wsp-deployment-and-any-post-build-events-for-that-matter.aspx&amp;#41;&lt;br /&gt;</description><author>rfennell</author><pubDate>Fri, 19 Dec 2008 12:52:14 GMT</pubDate><guid isPermaLink="false">Created Issue: Using with TFS Team Build - Problem with CreateCabDDF.vbs 20081219125214P</guid></item><item><title>Created Issue: Using with TFS Team Build - problem with macro expansion</title><link>http://www.codeplex.com/sptemplateland/WorkItem/View.aspx?WorkItemId=8590</link><description>You have to be careful in the pre&amp;#47;post build build events if you are trying to build this template on a TFS Team Build box due to differences in Macro expansion. It might be worth adding some guidance to the project on this matter&lt;br /&gt;&lt;br /&gt;I ended up with pre build script in the form &amp;#40;for mre detail see http&amp;#58;&amp;#47;&amp;#47;blogs.blackmarble.co.uk&amp;#47;blogs&amp;#47;rfennell&amp;#47;archive&amp;#47;2008&amp;#47;12&amp;#47;19&amp;#47;tfs-teambuild-and-sharepoint-wsp-deployment-and-any-post-build-events-for-that-matter.aspx&amp;#41;&lt;br /&gt;&lt;br /&gt;echo PREBUILD STARTED&lt;br /&gt;&lt;br /&gt;rem Check if we running in VS or Teambuild&lt;br /&gt;if not exist &amp;#34;..&amp;#92;..&amp;#92;..&amp;#92;CLIENTLIBRARY&amp;#92;SharedLibProject&amp;#92;bin&amp;#92;&amp;#36;&amp;#40;ConfigurationName&amp;#41;&amp;#92;SharedLibProject.dll&amp;#34; goto tfsbuild&lt;br /&gt;&lt;br /&gt;echo Copy from VS locations, in this sample we assume a shared library, a webpart and some javascript&lt;br /&gt;xcopy &amp;#34;..&amp;#92;..&amp;#92;..&amp;#92;CLIENTLIBRARY&amp;#92;SharedLibProject&amp;#92;bin&amp;#92;&amp;#36;&amp;#40;ConfigurationName&amp;#41;&amp;#92;SharedLibProject.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;..&amp;#92;..&amp;#92;..&amp;#92;Web Part&amp;#92;bin&amp;#92;&amp;#36;&amp;#40;ConfigurationName&amp;#41;&amp;#92;&amp;#42;.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;SolutionDir&amp;#41;HOST&amp;#92;bin&amp;#92;HOST.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;SolutionDir&amp;#41;HOST&amp;#92;json&amp;#42;&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;TEMPLATE&amp;#92;LAYOUTS&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;SolutionDir&amp;#41;HOST&amp;#92;&amp;#42;.js&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;TEMPLATE&amp;#92;LAYOUTS&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;&lt;br /&gt;goto end&lt;br /&gt;&lt;br /&gt;&amp;#58;tfsbuild&lt;br /&gt;echo Copy from TFS build locations&lt;br /&gt;&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;outdir&amp;#41;&amp;#92;SharedLibproject.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;outdir&amp;#41;&amp;#92;WebPart.Core.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;   &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;outdir&amp;#41;&amp;#92;WebPart.UI.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;   &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;outdir&amp;#41;&amp;#92;Host.dll&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;DLLS&amp;#92;GAC&amp;#92;&amp;#34;   &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;SolutionDir&amp;#41;HOST&amp;#92;json&amp;#42;&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;TEMPLATE&amp;#92;LAYOUTS&amp;#92;json&amp;#42;&amp;#34;  &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;xcopy &amp;#34;&amp;#36;&amp;#40;SolutionDir&amp;#41;HOST&amp;#92;&amp;#42;.js&amp;#34;  &amp;#34;&amp;#36;&amp;#40;ProjectDir&amp;#41;TEMPLATE&amp;#92;LAYOUTS&amp;#92;&amp;#42;.js&amp;#34;   &amp;#47;F &amp;#47;R &amp;#47;Y&lt;br /&gt;&lt;br /&gt;&amp;#58;end&lt;br /&gt;&lt;br /&gt;echo PREBUILD COMPLETE&lt;br /&gt;</description><author>rfennell</author><pubDate>Fri, 19 Dec 2008 12:50:51 GMT</pubDate><guid isPermaLink="false">Created Issue: Using with TFS Team Build - problem with macro expansion 20081219125051P</guid></item><item><title>New Post: issue with CreateCabDDF.vbs</title><link>http://www.codeplex.com/sptemplateland/Thread/View.aspx?ThreadId=36872</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
just wanted to let you know that the following bit of script in CreateCabDDF.vbs is causing problems when you have sub folders inside a&amp;nbsp;feature folder, as the condition will&amp;nbsp;unwantedly evaluate to true for each level below a feature folder.&lt;br&gt;
&lt;br&gt;
if (sRelativePath &amp;lt;&amp;gt; &amp;quot;&amp;quot; and InStr(1, sFolder, &amp;quot;FEATURES&amp;quot;) &amp;gt; 0) then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sRelativePath = &amp;quot;FEATURES\&amp;quot; + sRelativePath&lt;br&gt;
end if&lt;br&gt;
&lt;br&gt;
I have modified my version to fix this problem:&lt;br&gt;
&lt;br&gt;
if (sRelativePath &amp;lt;&amp;gt; &amp;quot;&amp;quot; and InStr(1, sFolder, &amp;quot;FEATURES&amp;quot;) &amp;gt; 0 and InStr(1, sRelativePath, &amp;quot;FEATURES\&amp;quot;) &amp;lt; 1) then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sRelativePath = &amp;quot;FEATURES\&amp;quot; + sRelativePath&lt;br&gt;
end if&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
&lt;br&gt;
Jaap Vossers
&lt;/div&gt;</description><author>jvossers</author><pubDate>Thu, 02 Oct 2008 09:07:31 GMT</pubDate><guid isPermaLink="false">New Post: issue with CreateCabDDF.vbs 20081002090731A</guid></item><item><title>New Post: issue with CreateCabDDF.vbs</title><link>http://sptemplateland.codeplex.com/Thread/View.aspx?ThreadId=36872</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
just wanted to let you know that the following bit of script in CreateCabDDF.vbs is causing problems when you have sub folders inside a&amp;nbsp;feature folder, as the condition will&amp;nbsp;unwantedly evaluate to true for each level below a feature folder.&lt;br&gt;
&lt;br&gt;
if (sRelativePath &amp;lt;&amp;gt; &amp;quot;&amp;quot; and InStr(1, sFolder, &amp;quot;FEATURES&amp;quot;) &amp;gt; 0) then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sRelativePath = &amp;quot;FEATURES\&amp;quot; + sRelativePath&lt;br&gt;
end if&lt;br&gt;
&lt;br&gt;
I have modified my version to fix this problem:&lt;br&gt;
&lt;br&gt;
if (sRelativePath &amp;lt;&amp;gt; &amp;quot;&amp;quot; and InStr(1, sFolder, &amp;quot;FEATURES&amp;quot;) &amp;gt; 0 and InStr(1, sRelativePath, &amp;quot;FEATURES\&amp;quot;) &amp;lt; 1) then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sRelativePath = &amp;quot;FEATURES\&amp;quot; + sRelativePath&lt;br&gt;
end if&lt;br&gt;
&lt;br&gt;
Regards,&lt;br&gt;
&lt;br&gt;
Jaap Vossers
&lt;/div&gt;</description><author>jvossers</author><pubDate>Thu, 02 Oct 2008 09:07:31 GMT</pubDate><guid isPermaLink="false">New Post: issue with CreateCabDDF.vbs 20081002090731A</guid></item><item><title>Created Issue: Error: Cannot find this file specified in the manifest file</title><link>http://www.codeplex.com/sptemplateland/WorkItem/View.aspx?WorkItemId=6387</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have this error when adding the solution to my server &amp;#40;&amp;#34;&amp;#37;STSADM&amp;#37; -o addsolution -filename &amp;#37;PackageFile&amp;#37;&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt;What is special in my project&amp;#63; A subfolder in the directory &amp;#34;Template&amp;#47;Features&amp;#47;MyFeature&amp;#34;. This is my tree files &amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#34;Template&amp;#47;Features&amp;#47;MyFeature&amp;#47;feature.xml&amp;#34;&lt;br /&gt;&amp;#34;Template&amp;#47;Features&amp;#47;MyFeature&amp;#47;Columns&amp;#47;MyColumns.xml&amp;#34;&lt;br /&gt;&amp;#34;Template&amp;#47;Features&amp;#47;MyFeature&amp;#47;ContentTypes&amp;#47;MyContentTypes.xml&amp;#34;&lt;br /&gt;&lt;br /&gt;The error message is &amp;#34;Error&amp;#58; Cannot find this file specified in the manifest file &amp;#58; Template&amp;#47;Features&amp;#47;MyFeature&amp;#47;Columns&amp;#47;MyColumns.xml&amp;#34;&lt;br /&gt;MySolution.wsp&amp;#58; The Solution installation failed.&lt;br /&gt;&lt;br /&gt;Anyone can help me&amp;#63;&lt;br /&gt;</description><author>fdobon</author><pubDate>Wed, 18 Jun 2008 16:41:37 GMT</pubDate><guid isPermaLink="false">Created Issue: Error: Cannot find this file specified in the manifest file 20080618044137P</guid></item><item><title>CREATED ISSUE: copy of dlls</title><link>http://www.codeplex.com/sptemplateland/WorkItem/View.aspx?WorkItemId=2676</link><description>I suggest that the following code are added in post-built event before manifest and dff are build.&lt;br/&gt;&lt;br/&gt;copy "$(ProjectDir)\bin\debug\$(ProjectName).dll" "$(ProjectDir)\DLLS\GAC\$(ProjectName).dll" /y&lt;br/&gt;</description><author>frien</author><pubDate>Thu, 28 Jun 2007 08:56:12 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: copy of dlls 20070628085612A</guid></item><item><title>CREATED ISSUE: Source control items</title><link>http://www.codeplex.com/sptemplateland/WorkItem/View.aspx?WorkItemId=2675</link><description>I suggest that source save items are excluded in the CreateCabDDF and CreateManifest files.&lt;br/&gt;&lt;br/&gt;That is all .scc files and what the files are called in TFS&lt;br/&gt;</description><author>frien</author><pubDate>Thu, 28 Jun 2007 08:51:18 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Source control items 20070628085118A</guid></item><item><title>NEW POST: wspbuilder or this template</title><link>http://www.codeplex.com/sptemplateland/Thread/View.aspx?ThreadId=11179</link><description>&lt;div class="wikidoc"&gt;
This is regarding this template.&lt;br /&gt;I have found one more tool on codeplex called wspbuilder(http://www.codeplex.com/wspbuilder#CommentsAnchor)&lt;br /&gt;which do similiar things as visual studio project template. Although vs project&lt;br /&gt;template is a template ,but the end result of both tools seems to be the same.&lt;br /&gt;What is your recommmendation about which one to use.&lt;br /&gt;
&lt;/div&gt;</description><author>rajiv13579</author><pubDate>Fri, 08 Jun 2007 11:17:38 GMT</pubDate><guid isPermaLink="false">NEW POST: wspbuilder or this template 20070608111738A</guid></item><item><title>New Post: wspbuilder or this template</title><link>http://sptemplateland.codeplex.com/Thread/View.aspx?ThreadId=11179</link><description>&lt;div style="line-height: normal;"&gt;
This is regarding this template.&lt;br /&gt;I have found one more tool on codeplex called wspbuilder(http://www.codeplex.com/wspbuilder#CommentsAnchor)&lt;br /&gt;which do similiar things as visual studio project template. Although vs project&lt;br /&gt;template is a template ,but the end result of both tools seems to be the same.&lt;br /&gt;What is your recommmendation about which one to use.&lt;br /&gt;&lt;/div&gt;</description><author>rajiv13579</author><pubDate>Fri, 08 Jun 2007 11:17:38 GMT</pubDate><guid isPermaLink="false">New Post: wspbuilder or this template 20070608111738A</guid></item><item><title>New Post: wspbuilder or this template</title><link>http://sptemplateland.codeplex.com/Thread/View.aspx?ThreadId=11179</link><description>&lt;div style="line-height: normal;"&gt;
This is regarding this template.&lt;br /&gt;I have found one more tool on codeplex called wspbuilder(http://www.codeplex.com/wspbuilder#CommentsAnchor)&lt;br /&gt;which do similiar things as visual studio project template. Although vs project&lt;br /&gt;template is a template ,but the end result of both tools seems to be the same.&lt;br /&gt;What is your recommmendation about which one to use.&lt;br /&gt;&lt;/div&gt;</description><author>rajiv13579</author><pubDate>Fri, 08 Jun 2007 11:17:38 GMT</pubDate><guid isPermaLink="false">New Post: wspbuilder or this template 20070608111738A</guid></item><item><title>NEW POST: Nice work...</title><link>http://www.codeplex.com/sptemplateland/Thread/View.aspx?ThreadId=10763</link><description>&lt;div class="wikidoc"&gt;
 Thank you for sharing...&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>devrimbaris</author><pubDate>Tue, 29 May 2007 11:04:15 GMT</pubDate><guid isPermaLink="false">NEW POST: Nice work... 20070529110415A</guid></item><item><title>New Post: Nice work...</title><link>http://sptemplateland.codeplex.com/Thread/View.aspx?ThreadId=10763</link><description>&lt;div style="line-height: normal;"&gt;
 Thank you for sharing...&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><author>devrimbaris</author><pubDate>Tue, 29 May 2007 11:04:15 GMT</pubDate><guid isPermaLink="false">New Post: Nice work... 20070529110415A</guid></item><item><title>Copying DLLs during post-build: </title><link>http://www.codeplex.com/sptemplateland/Thread/View.aspx?ThreadId=7512</link><description>&lt;div class="wikidoc"&gt;
Thomas,&lt;br /&gt; &lt;br /&gt;It sounds possibly like a timing problem. In the post-build it copies the DLL, but it has finished copying by the time the script is looking for the DLL and so does not get included.&lt;br /&gt; &lt;br /&gt;You might try this at the begining of the ddf script...&lt;br /&gt; &lt;br /&gt;Dim starttime, exittime, x&lt;br /&gt;x = 0&lt;br /&gt;starttime = timer&lt;br /&gt;exittime = starttime + 5&lt;br /&gt;do while timer &amp;lt; exittime&lt;br /&gt;   x= x + 1&lt;br /&gt;loop&lt;br /&gt; &lt;br /&gt;this should give it 5 seconds bore it starts...I haven't tested it, but you get the idea&lt;br /&gt; &lt;br /&gt;Vince&lt;br /&gt;
&lt;/div&gt;</description><author>TheKid</author><pubDate>Thu, 22 Feb 2007 16:39:10 GMT</pubDate><guid isPermaLink="false">Copying DLLs during post-build:  20070222043910P</guid></item><item><title>New Post: Copying DLLs during post-build</title><link>http://sptemplateland.codeplex.com/Thread/View.aspx?ThreadId=7512</link><description>&lt;div style="line-height: normal;"&gt;
Thomas,&lt;br /&gt;&lt;br /&gt;It sounds possibly like a timing problem. In the post-build it copies the DLL, but it has finished copying by the time the script is looking for the DLL and so does not get included.&lt;br /&gt;&lt;br /&gt;You might try this at the begining of the ddf script...&lt;br /&gt;&lt;br /&gt;Dim starttime, exittime, x&lt;br /&gt;x = 0&lt;br /&gt;starttime = timer&lt;br /&gt;exittime = starttime + 5&lt;br /&gt;do while timer &amp;lt; exittime&lt;br /&gt;   x= x + 1&lt;br /&gt;loop&lt;br /&gt;&lt;br /&gt;this should give it 5 seconds bore it starts...I haven't tested it, but you get the idea&lt;br /&gt;&lt;br /&gt;Vince&lt;br /&gt;&lt;/div&gt;</description><author>TheKid</author><pubDate>Thu, 22 Feb 2007 16:39:10 GMT</pubDate><guid isPermaLink="false">New Post: Copying DLLs during post-build 20070222043910P</guid></item><item><title>Copying DLLs during post-build: </title><link>http://www.codeplex.com/sptemplateland/Thread/View.aspx?ThreadId=7512</link><description>&lt;div class="wikidoc"&gt;
Copied message from my blog...&lt;br /&gt; &lt;br /&gt;Hi there, I am trying to use your nice and handy template, but I can’t get it working so that it updates the .dll files in the GAC folder inside the .wsp file. &lt;br /&gt; &lt;br /&gt;I have a number of .cs files added under Controls, and when I build the project the result(a .dll file) is placed in the bin\debug folder. Then in post-build i copy the .dll file to the GAC, but it is newer updated in the .wsp file. If I remove the file and build a new .wsp file, witch does not contain my .dll file, and i afterwards add the .dll again, an the builds the .wsp file again, it is updated inside the .wsp file. Because of that I think it is somthing about overwriting the existing .dll file in the .wsp that fails, but i can’t find out fixing it! &lt;br /&gt; &lt;br /&gt;Please help&lt;br /&gt; &lt;br /&gt;/Thomas&lt;br /&gt;
&lt;/div&gt;</description><author>TheKid</author><pubDate>Thu, 22 Feb 2007 16:38:15 GMT</pubDate><guid isPermaLink="false">Copying DLLs during post-build:  20070222043815P</guid></item><item><title>New Post: Copying DLLs during post-build</title><link>http://sptemplateland.codeplex.com/Thread/View.aspx?ThreadId=7512</link><description>&lt;div style="line-height: normal;"&gt;
Copied message from my blog...&lt;br /&gt;&lt;br /&gt;Hi there, I am trying to use your nice and handy template, but I can’t get it working so that it updates the .dll files in the GAC folder inside the .wsp file. &lt;br /&gt;&lt;br /&gt;I have a number of .cs files added under Controls, and when I build the project the result(a .dll file) is placed in the bin\debug folder. Then in post-build i copy the .dll file to the GAC, but it is newer updated in the .wsp file. If I remove the file and build a new .wsp file, witch does not contain my .dll file, and i afterwards add the .dll again, an the builds the .wsp file again, it is updated inside the .wsp file. Because of that I think it is somthing about overwriting the existing .dll file in the .wsp that fails, but i can’t find out fixing it! &lt;br /&gt;&lt;br /&gt;Please help&lt;br /&gt;&lt;br /&gt;/Thomas&lt;br /&gt;&lt;/div&gt;</description><author>TheKid</author><pubDate>Thu, 22 Feb 2007 16:38:15 GMT</pubDate><guid isPermaLink="false">New Post: Copying DLLs during post-build 20070222043815P</guid></item></channel></rss>