New Post: Support for VS2012?
Hi, I'm trying to figure out if MSBuild.ExtensionPack.VisualStudio.TfsSource can work against a TFS2012 server. Now after upgrade I get a error message when doing:< ...TfsSource TaskAction="Get"...
View ArticleNew Post: Support for VS2012?
Sorry for asking. I found the problem as soon as I pressed the button ;-) I had to upgrade the ToolsVersion from 3.5 to 4.0 in the file that executes the these statements, then it worked. /Ulf
View ArticleNew Post: Support for VS2012?
Thanks for the update. A fix to resolve 2012 went in on Saturday (https://msbuildextensionpack.codeplex.com/SourceControl/changeset/83360) and will ship in the new release in a few days. Mike
View ArticleNew Post: IIS.Create application inside virtual directory
I can create create application inside website with <MSBuild.ExtensionPack.Web.Iis7Website TaskAction="AddApplication" Name="Default Web Site" Applications ="@(Application)"/> but I cant create...
View ArticleNew Post: IIS.Create application inside virtual directory
You can't currently do that with the IIS7 task, though the IIS6 VirtualDirectory task might work. I'll see if we can get support for doing that in the upcoming release (but it may be the next)... Mike
View ArticleNew Post: IIS.Create application inside virtual directory
Hi, I think you can actually do this, you just need to specify the right include path, here is a sample<ItemGroup><Application1 Include="/vd1/app1">...
View ArticleNew Post: IIS.Create application inside virtual directory
It works excellent !!! Thank you.
View ArticleNew Post: Svn task - how to provide credentials?
I've provided a patch. See https://msbuildextensionpack.codeplex.com/SourceControl/list/patches - ID 14353
View ArticleNew Post: Svn task - how to provide credentials?
This discussion has been copied to a work item. Click here to go to the work item and continue the discussion.
View ArticleNew Post: Race conditions with Tasks
Maybe someone can help me out with some ideas, please? All my csprojs import a common build file which hangs targets off Pre and PostBuild targets which do various stuff... including setting up IIS...
View ArticleNew Post: Using MSBuild Extension pack to Deploy Code - Need to update...
Does anyone know how I can,in the targets.XML file, declare what a value should be within a configuration file before calling the <MSBuild> command to compile the code? I've been told I can use...
View ArticleNew Post: how to use MSBuild Extension Tasks in DefaultTemplate.xaml in Team...
i want to use simple MSBuild Extension Zip Task in Team Build server 2010 , to Zip the output of build in drop location what are the required steps to do this? Thanks
View ArticleNew Post: Race conditions with Tasks
Mutex is probably the solution. Feel free to send a patch or raise an issue and I'll look at getting it fixed. What you describe could be a wider issue though. Mike
View ArticleNew Post: how to use MSBuild Extension Tasks in DefaultTemplate.xaml in Team...
Hi This task is available as an activity in https://tfsbuildextensions.codeplex.com Regards Mike
View ArticleNew Post: Using MSBuild Extension pack to Deploy Code - Need to update...
I'm not following. Can you provide a bit more info on what you need to do. thanks Mike
View ArticleNew Post: how to use MSBuild Extension Tasks in DefaultTemplate.xaml in Team...
thanks for your replay in case i want to integrate MSBuild MSBuild Extension Task in TFS Build Work flow ., how to do this ?
View ArticleNew Post: Race conditions with Tasks
Hi Mike thanks very much for getting back to me. I won't submit a patch - as my 'fix' is quick and filthy; as I don't really have much clue where to begin and as I am mutex-ing irrespective of target...
View ArticleNew Post: Using MSBuild Extension pack to Deploy Code - Need to update...
Hi, Yes, I can definitely clarify, so below is a snippet of target.xml file I’m working on to help with the packaging of the different components that make up the application I release. I have found...
View Article