The msbuild-task tag has no wiki summary.
13
votes
4answers
2k views
Unit test MSBuild Custom Task without “Task attempted to log before it was initialized” error
I have written a few MSBuild custom tasks that work well and are use in our CruiseControl.NET build process.
I am modifying one, and wish to unit test it by calling the Task's Execute() method.
...
10
votes
3answers
3k views
MSBuild 2010 - how to publish web app to a specific location (nant)?
I'm trying to get MSBuild 2010 to publish a web app to a specific location.
I can get it to publish the deployment package to a particular path, but the deployment package then adds its own path that ...
9
votes
1answer
327 views
What is the difference between a PreBuildEvent, BeforeBuild target and BeforeCompile target in MSBuild?
I recently had to move some code from a PreBuildEvent in Visual Studio into the BeforeBuild target to make it work on AppHarbor. While doing so, I also noticed a BeforeCompile target.
What is the ...
9
votes
4answers
5k views
MSBuild Task syntax for deleting files
I'm trying to write a MSBuild Task that deletes the Obj directory and PDBs from my bin folder on my production build scripts and can't seem to get it to work right.
Does anyone have an example where ...
7
votes
2answers
425 views
Visual Studio 2008 locks custom MSBuild Task assemblies
I'm developing a custom MSBuild task that builds an ORM layer, and using it in a project. I'm being hampered by Visual Studio's behaviour of holding onto MSBuild task DLLs and not letting go.
I'd ...
6
votes
2answers
237 views
MSBuild Starter Kits
Just wondering if anyone knows if there are any MSBuild starter kits out there.
What I mean by starter kits is that from the looks of it most builds to kinda the same sort of steps with minor ...
6
votes
2answers
2k views
Change only Revision number in AssemblyInfo.cs with msbuild FileUpdate task
I need to change only the revision number of an AssemblyInfo.cs file. The version number is in the format Major.Minor.Build.Revision e.g. 1.4.6.0.
Currently I change the version with the FileUpdate ...
6
votes
4answers
10k views
MSBuild Task Configuration Property
Three VS Solutions. First is configured to build as Release, and the other two set to build as Debug.
When running a simple MSBuild script explicitly stating the configuration to build (Debug) the ...
5
votes
1answer
248 views
Custom MSBuild Task locks assembly
At first glance, my problem seemed to be a common one: I have a custom MS Build task in some of my projects. Once I compile the projects, I cannot compile the build task any more - the build task ...
5
votes
2answers
502 views
How do i execute an MSBuild Task in VS2010 Web Deployment Build Template?
We've recently upgraded from VS2008 -> VS2010 (and hence upgrading from Web Deployment Project to proper deployment project).
Obviously what's new in VS2010 web deployments is the introduction of ...
5
votes
1answer
1k views
Return output from an MsBuild task?
I'd like to calculate a path in a MsBuild task, to be used by another MsBuild task.
What is the best way to accomplish this?
Setting a environment variable, printing to Console, ...?
5
votes
3answers
3k views
How to invoke the same msbuild target twice with different parameters from within msbuild project file itself
I have the following piece of msbuild code:
<PropertyGroup>
<DirA>C:\DirA\</DirA>
<DirB>C:\DirB\</DirB>
</PropertyGroup>
<Target ...
5
votes
4answers
1k views
Msbuild copy to several locations based on list of destination parameter?
I got a directory I want to copy to a number of locations.
Say I have
home.aspx
I want to copy it to
abc/home.aspx
def/home.aspx
ghi/home.aspx
so two questions for me:
How do I define the ...
5
votes
2answers
4k views
Honoring exit codes from batch files invoked by msbuild
I have a batch file that is using the exit command to return an exit code.
This batch file may, in some cases, be invoked interactively from a commandline, or in other cases, may be run as part of an ...
5
votes
9answers
4k views
Passing multiple values to Wix DefineConstants property with MSBuild
I'm currently integrating my Wix projects in MSBuild. It is necessary for me to pass multiple values to the Wix project. One value will work (ProductVersion in the sample below).
<Target ...
5
votes
2answers
3k views
Programatically find TFS changes since last good build
I have several branches in TFS (dev, test, stage) and when I merge changes into the test branch I want the automated build and deploy script to find all the updated SQL files and deploy them to the ...
4
votes
2answers
457 views
msbuild custom task
I have a custom MSBuild task that takes in a set of JavaScript files, minifies them, and outputs them, with the extension .min.js. When I do a normal build through Visual Studio, it works perfectly ...
4
votes
2answers
139 views
Choosing which Service Pack of the .Net Framework to build against
I have read many questions (and answers) around here that had similar sounding terms in them as this question, but all of them ended up being about building against different major versions of .Net. 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
43 views
How to pass TFS variable to a MSBuild task of the project
I have a solution which is built on TFS server. This solution includes several projects which have custom MSBuild tasks. Theses tasks actually create some zip archives.
I need to extract somehow the ...
3
votes
3answers
63 views
How to Run the Unit Test As the part of Build (Not continuous integration)
I have Nunit unit test which i need to run as the part of my MS build.. I know that running all the test will slow up the build So, i need to run only the impacted test is there any way to find that ...
3
votes
1answer
97 views
Is there any msbuild-task to get free space in a unit in TFS Builds (TFS2008)?
My builds are failing because some times I have no disk-space in my build server. The problem is that the error message is not clear. It fails in any random part and log is not available when this ...
3
votes
3answers
2k views
Using MSBuild to Build Multiple Configurations
I'm trying to edit my project file to enable me to have a project that builds multiple build configs at once. I've done this using a batching approach and using the MSBuild task (see below).
If I ...
3
votes
1answer
525 views
How can I use MSBuild Copy Task to Copy To Multiple Destination Folders?
I'm trying to copy a folder recursively to multiple destination folders using MSBuild's Copy task. I've seen the following question which gave me a good start, but I must be missing something:
...
3
votes
2answers
437 views
MsBuild does not look in the good directory for custom task's second-level dependencies
I wrote a MsBuild Task : MyTask. In my solution, I have the Task project and others projects. MyTask references a project (say ProjA) which references third assemblies, say (dep1 and dep2).
The ...
3
votes
3answers
298 views
MSBuild: How do I create and use a Task to convert Content items at build time?
I have a Silverlight 3 project with something like this:
<ItemGroup>
<Content Include="Content\image1.png">
</Content>
</ItemGroup>
Basically I've added a PNG file to my ...
3
votes
3answers
939 views
Is there any MSbuild task to check if a string contains another string (similar to string.contains)
I have this Msbuild code:
<Import Project="A.proj" Condition="$(BuildDefinition) =='Dist Staging to Dev' Or $(BuildDefinition) =='Dist Staging to Dev(Services Only)'"/>
But I was wondering if ...
3
votes
2answers
181 views
How do I determine the current operating system version in MSBuild?
Is there a native or custom MSBuild task available that returns the current OS version? Is there a binary that I could call via an Exec task? Or is there some other option?
Edit:
Peter Lang ...
3
votes
1answer
497 views
ASP.NET: Execute MSBuild tasks after publishing
I have an ASP.NET project.
There is a 'Publish...' option in the context menu of the project (Visual Studio 2008).
Can I add some custom MSBuild tasks that will be performed each time after ...
2
votes
2answers
48 views
Stop Copy Task immediately if one file was not copied successfully
Just imagine regular Deploy Target which copies thousand files to the remote network folder using MSBuild Copy Task, I believe pretty common scenario. So when folder is not accessible or there are ...
2
votes
2answers
51 views
Why do these MSBuild Output Items seem empty, when they are not?
Strange way to put a question, anyway ... Basically this is my first real attempt with MSBuild.
I managed to create a Target (RenameJs) which produces a new Output Items List named JsMinifyOutput (a ...
2
votes
2answers
189 views
Counting warnings from MSBuild task
I have the following msbuild goop :
<MSBuild Projects="$(MySLN)" Targets="Build" />
<!--count all warning and fail if > 20-->
<Exec WorkingDirectory="$(BuildFolder)"
...
2
votes
1answer
535 views
error MSB4018: The “<exec>” task failed unexpectedly
i am getting this error with visual studio 2010 and .net framework 4.0.
Not able to see any relevant solution for this especially with VS2010.
any comments/suggestions pls.
error MSB4018: The "" task ...
2
votes
2answers
2k views
MSBuild error MSB3021: Unable to copy file. Could not find file 'obj\Release\myWebProject1.dll'
When using TeamCity to compile my MSBuild XML task script, it fails with this:
[10:43:03]: myWebProject1\ myWebProject 1 .csproj (3s)
[10:43:07]: [ myWebProject1\ myWebProject1 .csproj] ...
2
votes
1answer
1k views
How can i change Assembly Version Number using AssemblyInfoTask
I'm completely new to this MSBuild tool but nonetheless I have a question someone might be able to answer:
I am trying to automate the process for Version for all DLL's, after spending certain time i ...
2
votes
1answer
75 views
Build Servers, build agents, com registration and Windows 7 permissions
I am trying to build a continuous integration server on a Windows 7 machine. I can run the msbuild script cleanly on that machine but when I attempt to run it via a build agent the registration of ...
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
1answer
161 views
Can I call a MSBuild Task from Mono XBuild?
Can I call a MSBuild Task from Mono XBuild?
http://msdn.microsoft.com/en-us/library/ms126274.aspx
http://www.mono-project.com/Microsoft.Build
2
votes
2answers
102 views
F# and MSBuild Tool (silverlight)
We are trying to use Static Resources within a 100% F# Silverlight application. Embeded within the XAML of the referencing control, everything works. But once I pull them out I am a loss. C# ...
2
votes
2answers
123 views
When implementing a microsoft.build.utilities.task how to i get access to the various environmental variables of the build?
When implementing a microsoft.build.utilities.task how to i get access to the various environmental variables of the build?
For example "TargetPath"
I know i can pass it in as part of the task XML
...
2
votes
2answers
971 views
MSBuild Build Sequence
Looking at this article from MS, I have a question about the SolutionToBuild section.
<ItemGroup>
<SolutionToBuild Include="$(SolutionRoot)\path\MySolution.sln />
...
2
votes
1answer
119 views
Trouble with outputting msbuild variables
Fairly simple question i imagine but i can't seem to make it work. I'm trying to output the variable from one target, into the parent target which started it. For Example,
Target 1 simply calls the ...
2
votes
2answers
1k views
Use MSBuild to build Entity Framework Model without using the Project File?
I am in the process of build a script for a fairly big project. One of the projects require an Entity Framework Model to be compiled into a library. Due to the way the build server works, all builds ...
2
votes
1answer
407 views
MSBuild ITaskItem RecursiveDir metadata disappears
I have a custom MSBuild task, which processes a set of files and returns a modified subset of this. Basically, I just create a new ITaskItem array out of the input, skipping some items.
However, the ...
2
votes
3answers
476 views
Reading/Capturing DOS input for use in MsBuild
How do I capture/read DOS input for use in MsBuild?
EDITED for clarification
Currently I have 2 files. One batch file, the other is the core.msbuild file which contains the msbuild stuff. I want ...
2
votes
3answers
859 views
How do you read a registry value using a custom msbuild task?
I'm creating an MSBuild task that will read the registry for a specific registry key. If I write the same line of code (see below) in a console application, it returns the expected result, but when ...
2
votes
1answer
626 views
CCNet email does not include MSBuild results
We're using CCNet 1.4.4.83 but when an MSBuild task fails, we don't get the MSBuild results (i.e. missing file or whatever reason the compile failed) in the email notification.
I do see the build ...
2
votes
5answers
881 views
WPF app builds in vs2k8, but not on command line w/ msbuild
I have a fairly small solution that includes a WPF windows application. It builds perfectly fine when built from the solution. I recently integrated the projects contained within the solution into an ...
2
votes
1answer
3k views
MSBuild TFS Build Number
I have been using SVN for a little while now. recently on a project I am using TFS. With the builds I like to append/update the build version number on the project output. I do this on the ...
2
votes
1answer
696 views
Filter on Category for NUnit MSBuild tasks?
I'm setting up a MSBuild project to run some NUnit test, using the MSBuild Community Tasks Project.
With these settings I'll be able to run the NUnit tests:
<Target Name="Test" ...