Tagged Questions
The msbuildcommunitytasks tag has no wiki summary.
7
votes
3answers
1k views
Intellisense for MSBuild Community Tasks doesn't work
I'm using VS 2010 RC1. I download MSBuild Community Tasks (MCT) and install it. (To give full information, I have also installed MSBuild Extension Pack)
Then, in order to have Intellisense work for ...
5
votes
2answers
3k views
MSBuild.Community.Tasks.Attrib on x64 machine failing
I'm having an issue with the Attrib task from the MSBuild Community Tasks Project when running on a 64 bit build machine.
I've put together this small test project to show what the problem is:
...
4
votes
1answer
290 views
Avoiding local dependencies for MSBuild Community Tasks within Visual Studio 2010
I'm trying to start taking advantage of the MSBuild Community Tasks so right after installing the .msi package I've imported MSBuild.Community.targets within the <Project> element this way:
...
4
votes
2answers
3k views
MSBuild Community Tasks Documentation
Is it just me or is the documentation on this project really scarce?
I'm trying to find how to use the FtpCreateRemoteDirectory and FTP functionality in general, but can't seem to find anything.
...
4
votes
3answers
1k views
MSBuild: adding/copying empty folders via Zip/Copy task
I'm trying to create copy/zip a pre-compiled site which is contains empty folders(after pre-compilation). Looks like empty folders is not included to the list of items after CreateItem task.
How I ...
4
votes
2answers
3k views
MSBuild MSBuildCommunityTasks Task Time
I have a MSBuild project and I want the current date to be added to a zip file that I am creating.
I am using the MSBuildCommunityTasks.
''
'<'Import ...
3
votes
2answers
195 views
MSBuild community task GacUtil silently failing for me
I have an open source .NET project whose main artefact is a DLL that needs to be installed to the GAC for its primary use case. Therefore I want to install it during the AfterBuild task. I am using ...
3
votes
2answers
285 views
MSBuild Extension Pack vs MSBuild Community Tasks
I am just starting to make custom MSBuild scripts for the first time. I see that there are two standard options for extending the features: MSBuild Extention Pack and MSBuild Community Tasks.
I am ...
3
votes
3answers
113 views
is there a deploy tool (or set of tools) that supports rollback of a deployment?
I'm learning FluentMigrator. The thing that I like about FM is that it supports the idea of Forward and Back for migrations (aka Up/Down). I'm finding that it's not ideal about this; there are some ...
3
votes
2answers
1k views
TeamCity + WiX + MSBuild workflow suggestions needed
I've been working on the next step of my continuous integration project, which is to get TeamCity to build my application, automatically change the version number of all assemblies, and then create an ...
2
votes
1answer
183 views
Do the MSBuild Community Tasks or Extension Pack work with Mono's xbuild?
Has anyone got the MSBuild Community Tasks or MSBuild Extension Pack working with Mono's xbuild? They both seem to have MSI installer, so I guess it's a case of manually transferring the files to the ...
2
votes
2answers
274 views
Does possibility to specify enabled protocols for web-application in IIS exist in MSBuild?
I create webdirectory in IIS, using MSBuild task:
<WebDirectoryCreate
VirtualDirectoryName="$(VirtualDirectoryName)"
VirtualDirectoryPhysicalPath="$(VirtualDirectoryPath)"
...
2
votes
5answers
2k views
How do I import the msbuildcommunitytasks project from another msbuild project with a relative file path?
Please go easy I am new to msbuild and msbuildtasks!
How can I set a property which represents a relative file path to a targets file which I want to import? I need relative references so it will ...
2
votes
2answers
1k views
MSBuild: asterisks and strange ItemGroup Exclude behaviour
I have a script that attempts to construct an ItemGroup out of all files in a certain directory while excluding files with certain names (regardless of extension).
The list of files to be excluded ...
2
votes
1answer
2k views
Zip task of MSBuild Community Tasks changes file attribute
I have found that creating a zip file using the Zip task provided by MSBuild Community Tasks changes (or rather, deletes) any file attributes of the files being zipped. Here is one of my calls to the ...
2
votes
3answers
2k views
How do I update an XML attribute from an MSBuild script?
I am using MSBuild and MSBuild Community Tasks (using XMLUpdate and XMLMassUpdate) to update various sections of my Web.config one thing has me stumped though. If I have:
<configuration>
...
2
votes
1answer
3k views
How best to update an XML node in MSBuild
I have been using the Tigris community tasks to update various AppSettings keys using the XMLUpdate task.
Now, however I want to add a node to the system.net section to set up the proxy.
I ...
1
vote
1answer
37 views
How to read mail using msbuild?
Is there any way to read mail contents using msbuild? Any custom tasks or community tasks available to achieve this?
1
vote
1answer
36 views
How do I specify a custom build file in Visual Studio
My company uses the MSBuild Community Tasks to provide custom build scripts to our projects. Today, I created a new project and built out a custom build script to run it. I was able to set up builds ...
1
vote
0answers
66 views
MSBuild error executing target WebDirectoryCreate
I'm trying to use the WebDirectoryCreate task from the MSBuildCommunityTasks to create my virtual directory with MSBuild but it throws an Index was out of range error.
Here's the relevant part of my ...
1
vote
1answer
87 views
How to use shared ItemGroup element in batching tasks
I'm trying to automate the creation of Firefox addon for two different platforms by using MSbuild:
I have shared files set which are the same for Mac and Windows and have platform specific files.
I ...
1
vote
1answer
147 views
Using XmlMassUpdate to update all appSettings
I want to use the XmlMassUpdate task in MSBuild to update appSettings in all app.configs. The problem I have is that some of the app.configs don't have an appSettings element, and I can't get ...
1
vote
1answer
85 views
MSBuild SvnInfo - which Target Inputs are correct?
I use SvnInfo task in MSBuild script:
<SvnInfo LocalPath="$(Sources)">
<Output TaskParameter="Revision" PropertyName="Revision" />
</SvnInfo>
$(Sources) contains source files ...
1
vote
3answers
341 views
TeamCity's AssemblyInfo patcher's number format
I once had TeamCity + WiX + MSBuild Community Tasks working. Now that I've upgraded to WiX 3.5, I can't remember how I had configured it. :) As I was poking through TeamCity, I came across the ...
1
vote
0answers
156 views
Editing Project Properties for Publish Version in team build
i have a nightly build in my TFS server that runs every night and is working completely fine. we plan to create a clickonce application as well which is currently working fine except the publish ...
1
vote
1answer
241 views
MSBuild Contrib XMLMassUpdate and NHibernate configuration
I'm attempting to build up an MSBuild file to deploy a set of several websites to multiple environments. At the moment, I've built the project and have it dumped into a directory.
I'm using the ...
1
vote
1answer
175 views
What is the difference between publishing through Ms Build and Visual Studio Publish Wizard through the IDE?
I searched on the web and could not find a satisfying answer for this question below:
I am currently working on ms build to publish my winform application based on the environment selected (Dev or ...
1
vote
1answer
179 views
MsBuild Copy output and remove part of path
I have an MsBuild project which builds various solutions and then copies the output of Web Deployment Projects into a destination folder with two sub folder as follows:
The WDP output folders are ...
1
vote
1answer
279 views
FxCop is not respecting my excludes
I am trying to incorporate FxCop directly into my build. I am using the MSBuild Community Tasks. I have a targets file like this:
<Project ToolsVersion="4.0" DefaultTargets="Build" ...
1
vote
1answer
345 views
Setting Assembly Info for InternalsVisibleTo with MSBuild Community Tasks
I'm using MSBuild Community Tasks to automatically update my assembly version numbers according to my Subversion repository tag. I have added the following to my project file:
This gives ...
1
vote
2answers
387 views
How to get the last part of $(MSBuildProjectDirectory)
Can't figure out how to get the last part of
$(MSBuildProjectDirectory)
For example, if the value was "c:\development\projects\project_branch"
then, I want just the last part "project_branch".
Any ...
1
vote
0answers
215 views
Get problem with Intellisense in Visual Studio 2010
I copy the MSBuild.Community.Tasks.xsd file in MSBuild Commnunity Tasks source code to the C:\Program Files\Microsoft Visual Studio 10.0\Xml\Schemas\1033\MSBuild\ folder of Visual Studio to get the ...
1
vote
3answers
1k views
date format in msbuild script?
In my msbuild script I'm creating a zip file with year/month/day in the zip filename, but month and day are always written with no leading zero.
Is there a way to add leading zero to my zip filename?
...
1
vote
1answer
1k views
msbuild fileupdate setup project
I'm looking to use the fileUpdate task from msbuildtasks.tigris.org to modify image src's as part of our web setup project so that they will point to a static img sub domain (or later a CDN)
I can run ...
1
vote
3answers
875 views
How do I use MSBuild on a C# project with no compilable code
I have a C# web app project which actually has no ASP.Net or C# in it. It's just a single html page with some Javascript, CSS, and a couple of images.
I want to use MSBuild to deploy a version of ...
1
vote
1answer
222 views
Is it possible to access files stored in TFS’s source control from the TFSBuild.proj file before the “Get” build task?
I’m using a few custom MSBuild tasks that are checked into source control. I would like to import these tasks into my TFSBuild.proj file that TFS uses to build the project. Right now I have created a ...
1
vote
1answer
710 views
How to create a web site with an application using MSBuild Extension Pack
What is the correct way to create a web site using the MSBuild Extension Pack?
I'm trying to use the MSBuild Extension Pack to create a web site using the following target. Unfortunately I don't have ...
1
vote
1answer
221 views
How can I use MSBuild to export another project as a Visual Studio template project?
Here's what I'm trying to achieve. I have a number of projects in C# and VB which I wish to export as template projects as part of my automated build process. Exporting templates is easy to do ...
1
vote
2answers
534 views
Cruise Control.NET File Merge NUnit File - Getting XmlException
I am new to Cruise Control. I'm running a project where I use an MSBuild file to build my project. I'm using the NUNit task in the MSBuild Community Tasks project to run all of my unit tests and ...
1
vote
1answer
781 views
XmlMassUpdate - how NOT to add xmlns?
I'm using Nightly build 1.3.0.477 of MSBuild Community Tasks and I'm having problem with XmlMassUpdate.
Here's what I want to do:
for each project, if it does not reference CommonAssemblyInfo.cs ...
1
vote
1answer
188 views
AppController error: Index out of bounds
I overrode the following target in my TFS build file to run various tasks that set up databases, import data, etc., etc. in Visual Studio 2008 - the aim was to stop only the website associated with an ...
1
vote
3answers
625 views
Master pages missing from Web Deployment Project output
We seem to be having an issue when running our deployment project in that, when it compiles, it seems to miss our master pages from the output.
Is there any way to 'force' the project to include ...
1
vote
2answers
4k views
MSBuild ReadLinesFromFile all text on one line
When I do a ReadLinesFromFile on a file in MSBUILD and go to output that file again, I get all the text on one line. All the Carriage returns and LineFeeds are stripped out.
<Project ...
0
votes
1answer
30 views
Email MSBuild errors - only when there are errors
msbuild MyProject.proj /fl /flp:v=detailed;logfile=mylog.txt
msbuild MyProject.proj /t:ErrorEmail
I have implemented this, and it works when there are errors.
But it's also sending an email when ...
0
votes
1answer
203 views
msbuild community task and svn
I try use svn msbuild community tasks?
<SvnCopy SourcePath="$(TrunkPath)" DestinationPath="$(TagPath)" Message="AutoBuild: create tag for build" />
but have next error in log:
Microsoft (R) ...
0
votes
1answer
105 views
referencing msbuild community tasks through a relative path
I have spent the last 2 days trying to figure out how to use the SvnInfo task in the MSBuild Community Tasks pack relatively. It works on my machine because I used the installer. Though surely I ...
0
votes
1answer
52 views
how to do looping in msbuild to increment variable value?
i want to increment value N where n E {1...5}.how can increment value of N using msbuild.because i want to do same operation 5 times.
so can i do looping in ms build ?please help me to solve this ...
0
votes
1answer
54 views
Is there a way to easily output the current time in MSBuild (version 3.5)?
I'd like to output the current time (preferably before every task or at minimum when starting/completing every target) when invoking MSBuild 3.5.
I tried creating a target that I would continually ...
0
votes
1answer
137 views
Can't get MSBuild Community Task RegexReplace to work
I'm trying to copy a bunch of files whose names begin with the prefix DR__, but the copies must have that prefix removed. That is, DR__foo must be copied as foo. I'm trying this, which is based in the ...
0
votes
2answers
245 views
MS Build Community Tasks - SVNCHECKOUT: can't find svn.exe even though it is in PATH
Note: this question applies to using the MSBUILDCOMMUNITYTASKS add-in for MSBUILD. Specificly the functionality of SVNCHECKOUT and its inablity to find the svn.exe file even when it is located in a ...