The msbuildcommunitytasks tag has no wiki summary.
0
votes
1answer
21 views
It is possible to do this kind of conversion with msbuild
It is possible to do this kind of conversion with msbuild? Transforming metadata into items?
This:
<ItemGroup>
<Group Include="G1">
<A>1</A>
...
1
vote
1answer
18 views
Build on the Build Server Error: CS1730, After updating the Projects
Step 1:
Do the edit for following to the *.*proj files
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import ...
1
vote
1answer
88 views
Assembly Version Captured Before “BeforeBuild” Target
I am using MSBuild.Community.Tasks to help with two things, namely adjusting the version and zipping up a file. I am not married to this, so an alternate approach is welcome provided it produces what ...
2
votes
1answer
125 views
Using XmlUpdate to set Version information from an Assembly
Using MSBuild and MSBuild Community Tasks I am trying to do something very simple:
Get version information from an assembly.
Update a .nuspec file with that version information.
My MSBuild target ...
0
votes
0answers
154 views
MSBuild Zip task
I have a strange problem, i am ziping the files using Zip task of MSbuild, command prompt shown files added to zip file, but when i open the created zip file, i found it is empty.
Command Prompt ...
1
vote
1answer
306 views
MSBuild ItemGroup with condition
I don't know if ItemGroup is the right type to use. I will get 4 different booleans that will be true or false depending on choice.
I would like to fill up an ItemGroup with this "strings" depending ...
1
vote
1answer
60 views
msbuild Assembly number - Get wrong number
I have the following code in my CommonAssemblyInfo.cs
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("XXXX")]
[assembly: ...
0
votes
0answers
60 views
Prevent XmlUpdate from encoding XML when setting node contents
I am using XmlUpdate from MSBuild Community tasks:
<MyXmlToSet><myNode><myInnerNode>my value</myInnerNode></myNode><MyXmlToSet>
<XmlUpdate ...
5
votes
2answers
893 views
tf.exe on tfspreview
I need to get the changesetid in tfspreview for our continuous integration (I just need this single number nothing else), I tried all possible msbuild tasks which I could find, but there is always ...
0
votes
0answers
53 views
Setting the .NET Framework on a new App Pool
I'm creating a new AppPool using the MSBuild Community Tasks AppPoolCreate task.
I want to set the .NET Framework Version on the app pool but haven't been able to find out how to do this using the ...
1
vote
1answer
392 views
MSBuild Community Taks RegexReplace remove trailing slash from path
I am trying to use MSBuild community tasks to remove the slash from the end of the OutputPath
This is what i have so far.
<RegexReplace Input="$(OutputPath)" Expression="\$" Replacement="" ...
0
votes
1answer
642 views
MSBuild.Community.Tasks Unzip task makes console output bloat
I use the following code to unzip archive with MSBuild Community Task Unzip:
<Target Name="Sandbox">
<Unzip
ZipFileName="text.zip"
TargetDirectory="Unzip" />
...
1
vote
1answer
417 views
MSBuild Task for setting custom attribute in AssemblyInfo.cs
Is there a MSBuild task for setting custom attribute in AssemblyInfo.cs?
I found AssemblyInfo task but it seems that it cannot set custom attributes, only predefined ones. I'd like to set 3 custom ...
7
votes
2answers
425 views
MS Build copy a list of directories stored in Item
I have a text file which contains some locations of the files which I want to copy to a temp directory
---- List.txt ----
Build\Java
Build\Classes
Now, I am fetching this list into an Item
...
1
vote
0answers
175 views
Why does the MsbuildExtension Detokenise class reload the project?
This is problematic because any Properties being passed in are lost.
Further Explanation: I pass in a property to the project file. This property is a path to a .props file. It contains tokens and ...
2
votes
1answer
78 views
Msbuild WebDirectorySetting doesn't set enabledProtocols setting
I trying create iis7 web application by msbuild community tasks and set property "Enabled Protocols" to "http,net.tcp", but this property doesn't set (I am checking in inetmgr):
<Project ...
1
vote
1answer
210 views
svncommit msbuild task fails because the command line is too long
I'm using the svncommit task from the MSBuild Community Tasks Project. Unfortunately I've got a fairly large bunch of files to commit & it fails with this error:
The command-line for the ...
0
votes
1answer
367 views
How can I properly download a file with MsBuild Community Tasks WebDownload? [closed]
If I do this
[...]
<UsingTask AssemblyFile=".\MSBuild.Community.Tasks.dll"
TaskName="MsBuild.Community.Tasks.WebDownload" />
<Target Name="Download">
<WebDownload ...
3
votes
4answers
2k views
Zip using msbuild task
I try to create msbuild that will zip the build package
i have those line in the msbuild file:
<UsingTask AssemblyFile="MSBuild.Community.Tasks.dll" TaskName="MSBuild.Community.Tasks.Zip" />
...
0
votes
1answer
356 views
Cygwin 1.7.x fails to translate windows path to POSIX path
Year or so hence, I modified a project of mine to include subversion revision in installer file name.
I installed MSBuild.Community.Tasks.Targets and modified csproj file so that it contained:
...
0
votes
2answers
447 views
Pass Output items to separate target with MSBuild
I am creating a buildscript, where I'm outputting the TargetOutputs of an MSBuild, then wanting to call FXCop in a separate target, and using those outputs in the TargetAssemblies.
<Target ...
1
vote
0answers
307 views
Log4Net configuration error causing MSBuild to fail
I'm trying to set up a CI environment at a new client site using Team City and MSbuild and the MS build community extensions. Compiling the code seems to work fine. However, when I run my unit tests ...
0
votes
1answer
303 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 ...
1
vote
1answer
79 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
3k 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
2answers
1k 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 ...
2
votes
1answer
318 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
votes
2answers
289 views
how to represent following string using regular expression?
I want to represent following string using regular expression.
This is the sentence:
pro displ = "monitor" id="1"
I tried this:
pro displ=(("[^"]*")monitor(("[^"]*") id =(("[^"]*")1(("[^"]*")
...
0
votes
1answer
525 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
216 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 ...
1
vote
0answers
224 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
241 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 ...
3
votes
2answers
656 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 ...
1
vote
1answer
604 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 ...
0
votes
1answer
910 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 ...
1
vote
1answer
392 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 ...
5
votes
3answers
2k 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 ...
6
votes
2answers
3k 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 ...
0
votes
2answers
854 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 ...
0
votes
1answer
775 views
MSBuild: Modify Solution File using FileUpdate Task or Similar Task
I would like to be able to delete a project reference in a solution file via MSBuild.
I am assuming I can do this using the FileUpdate task; however, I am not sure how you turn on the multiline regex ...
0
votes
1answer
1k views
MSBuild, Extension Pack and TfsVersion
I am trying to implement what I see in this post: TFS and msbuild version number with last changeset. That is, I am trying to get the last Changeset number at build time so I can use it in an ...
0
votes
1answer
139 views
Invalid access code error in MSBuild script
I'm developing a MSBuild project and am getting an odd error when I try to access the Visual SourceSafe from the script (the script is based on other successful scripts we are using, and is using the ...
4
votes
3answers
232 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 ...
5
votes
1answer
848 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:
...
3
votes
0answers
271 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
433 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
321 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 ...
0
votes
2answers
242 views
XmlMassUpdate Multiple Values (MSBuild Community Tasks)
Say you have a config file with the following settings:
<someNode>
<node>value A</node>
<node>value B</node>
<node>value C</node>
...
0
votes
1answer
390 views
working with paths in msbuild
I'm trying to setup a virtual directory using msbuild and the msbuild community tasks but cannot find a way how to specify a relative path which is outside the $(MSBuildStartupDirectory).
My project ...
1
vote
1answer
390 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 ...

