Tagged Questions

Third version of the MSBuild build tool adds support for property functions, new build extension mechanism, inline tasks, project multitargetting and a new API model.

learn more… | top users | synonyms

4
votes
3answers
199 views

error MSB4166: Child node exited prematurely. Shutting down

Sometimes my build fail with this error. 0>MSBUILD : error MSB4166: Child node "3" exited prematurely. Shutting down. It seems to be completely random and I've not been able to reproduce it at ...
4
votes
4answers
435 views

How to tell MSBuild to publish many web projects into one directory?

I am running Automatic Builds with TFS 2010. In a solution I have more than one web applications which are all located under the same root directory - e.g.: RootDir -> ...
4
votes
2answers
315 views

MsBuild: Changing References from ProjectReference to Reference

In our environment, we have two in-house frameworks and a separate website. During development, the references to the in-house frameworks tend to be set tp project references. However, once we move ...
3
votes
2answers
209 views

How to run application in azure emulator in development mode without visual studio

I need to involve some markup and javascript people to help development team on azure asp.net MVC project. Essentially what I need is for each person to run a local instance of the azure application ...
3
votes
2answers
278 views

MSBUILD: Build Package including extra files

I've been having some serious challenges over the past week trying to implement the solution located at: http://blog.samstephens.co.nz/2010-10-18/msbuild-including-extra-files-multiple-builds/. ...
3
votes
1answer
269 views

_bin_deployableassemblies from build server without visual studio 2010 SP1 installed

I'm attempting to build a mvc 3 application that relies on the _bin_deployableassemblies folder introduced in VS2010 sp1. I'm using TeamCity as my build server. When I run the build within TeamCity ...
3
votes
1answer
194 views

Replace characters within an msbuild variable

I need to replace characters in a variable I am passing to an exec task within msbuild 4. Specifically, I need to replace all occurrences of backslashes \ with forward-slashes / in the ...
3
votes
5answers
587 views

Build MSBuild target without dependencies

Is there any way I can tell MSBuild 4.0 to build a target, but ignore any dependencies? I just want to build that target itself, nothing else.
3
votes
3answers
2k views

Copy bin files on to Physical file location on Post Build event in VS2010

I want to copy my dll generated in bin folder to a file location on Post Build Event in vs2010. Can some one help me on that. Thanks
2
votes
2answers
180 views

MSBUILD web deploy package zip file does not inherit permissions from parent folder

I'm creating a zip file from msbuild using the package target. It creates it fine and the folder I'm putting it in has permissions for a user that allows that user to have full control of the folder. ...
2
votes
1answer
102 views

Use MSBuild Properties in T4 Templates

I am using MSBuild to generate some files using T4 and I was wondering if it would be possible to reference and use MSBuild properties within the T4 template? I want to do something like this ...
2
votes
1answer
165 views

MSBuild fails on VB.NET lambda expressions

I have an issue with building a project using the MSBuild (ver 4) from the command line when declaring lambda expression like this: Private Sub Foo(ByVal s As String) Dim WL = Sub(str As String) ...
2
votes
1answer
153 views

msbuild String to Array

I am building a string with the PowershellTaskFactory that returns a list of files separated with a semicolon. When I try to pass this to my in Wix it is interpreted as a string. I've been fighting ...
2
votes
1answer
220 views

MSBuild 4.0 introduces dependency on 4.0 framework

We've recently upgraded all our .NET projects from VS2005 to VS2010. As a part of this move, we've upgraded from compiling with MSBuild 3.5 to MSBuild 4.0. All our compiles are from the command-line, ...
2
votes
2answers
110 views

MSBuild: transform paths to namespaces

I have list of items like this: <ItemGroup> <ToCompile Include="clojure\core.clj;clojure\set.clj;clojure\zip.clj;clojure\test\junit.clj;"/> </ItemGroup> And I want to ...
2
votes
1answer
355 views

Tfs2010 Build Number and Assembly File Versions & MSBuild targets

I read John Robbins' article TFS 2010 Build Number and Assembly File Versions: Completely In Sync with Only MSBuild 4.0, and I'm wondering about the best way to go about integrating this. The ...
2
votes
1answer
390 views

MSBuild error when building <project> unrecognized

I have installed VS2010. I have a simple .build file which contains this. <?xml version="1.0"?> <project name="system" default="build"> <target name="build"> <exec ...
2
votes
0answers
303 views

Code coverage in-place instrumentation: Cannot fully backup the binary error

Can anybody help with this error in the log of my Team Build 2010 build? It only seems to occur when I have two build agents running on the same machine at the same time. Run has the following ...
2
votes
1answer
665 views

TFS with different binaries folder for different projects

I've got a solution with Silverlight projects, a couple Web applications and some Windows service and their small Winforms test applications. When I build it using TFS it puts all binary files in the ...
2
votes
2answers
2k views

“OutputPath property is not set” error occurs only when calling MSBuild in CCNET

I've made an MSBuild project that simply does an msbuild task with our solution file as parameter. I've defined a BeforeBuild target where I set some properties, and a Build target that executes the ...
2
votes
2answers
2k views

TeamCity MSBuild 4.0 Help

I need some help with my MSBuild file i created a while ago. All i want to do is build the solution, publish a project inside the solution and than copy the files to a directory At the moment when ...
1
vote
1answer
33 views

How do I restore a property sheet to its default value?

Let's say I carry out the following steps immediately after first installing and opening Microsoft Visual Studio 2010: File -> New -> Project -> Win32 Console App -> Finish. Go to the Property ...
1
vote
1answer
44 views

Referencing well-known item metadata inside metadata definition in an ItemGroup in a target

Here's an MSBuild script: <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="AugmentItemGroup" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> ...
1
vote
3answers
65 views

How to split string by multiple characters in MSBuild 4?

I have the following string called MasterVersion: 1.1-SNAPSHOT I need to split it by the . and the - so it becomes a string[] array called SplitVersion, i.e.: 1 1 SNAPSHOT I've tried everything ...
1
vote
1answer
52 views

How to add prebuild activity in MSbuild to verify signing process?

We are using Msbuild to build our Wix projects. Due to various issues , few times assemblies specified in wix were just delay signed. When it was installed in GAC it failed. Is there any way to ...
1
vote
1answer
212 views

Building C++ project on a PC with Windows SDK 7.1 but without VS2010

I have a C++ project (some sort of a console 32-bit appplication) developed in VS2010, which builds just fine on my PC (Windows 7 32-bit). My PC has Microsoft SDK 7.0A installed, which I think comes ...
1
vote
2answers
108 views

How to measure the build execution time?

I am having build script in msbuild which will be invoked by powershell. Build log file would look like this. Build started 12/19/2011 2:01:54 PM. Build succeeded. 0 Warning(s) 0 Error(s) ...
1
vote
1answer
42 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
27 views

Is it possible to store the list of Projects to Build in an external file for TFS2010 build definitions?

I have a legacy build definition that was set up before I started my job that builds a solution file. Now, according to this article, MSBuild completely ignores the build order set up for the solution ...
1
vote
0answers
25 views

MSBuild Web packaging: Sources vs Binaries folder

I can't understand why MSBuild generates 2 folders on build server each time you queue a new build, Sources and Binaries. I have a web project deployed with a folder called Areas, containing views ...
1
vote
1answer
423 views

Need To Configure TFS Build With Custom Build Script

I use the below script to queue build in TFS 2010 build server. This TFSBuil.proj runs successfully if I use locally with command: MSBUILD.exe TFSBuild.proj and get my staging folder. I am trying ...
1
vote
1answer
98 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
53 views

Using MSBuild 4.0, is it possible to “simplify” a property containing a path?

Suppose that I have a property containing c:\workdir\project\wonder\subproj\..\..\common and I want to reduce/simplify it to c:\workdir\project\common Furthermore, I would also like to be able ...
1
vote
1answer
96 views

Use MSBuild to add a serial number and RSA private keys for each customer's copy of an application

I need to embed private RSA keys in my application. My RSA keys are generated based on a product serial number and option. Example serial#1_opt1.private (this file contains a key I want to embed in ...
1
vote
0answers
232 views

The target “_WPPCopyWebApplication” does not exist in the project

I am creating a build script to automate the publishing of our web projects to a testing machine. I have a msbuild script which successfully does this, however when it is running it generates an ...
1
vote
1answer
557 views

MSBUILD web deploy package does not include the project reference DLL's

When I try to create a package for web deploy using msbuild it only includes the projects dll. The package zip file or the temp directory does not include the referenced project's dlls. I've ...
1
vote
2answers
71 views

Dynamic Metadata Assignment in an ItemGroup

I have an ItemGroup defined as: <ItemGroup> <ProtoFiles Include="Protos\*.proto"/> </ItemGroup> It yields a list of all .proto files in a directory of my project. I want each ...
1
vote
2answers
96 views

How can msbuild.exe be set up to embed the proper value for SSE2 into _M_IX86_FP?

I have built a solution with VS2010 Express Edition with SSE2 set in the properties C++ code generation enhanced instruction set. Then in the program test against predefined MARCO _M_IX86_FP yields as ...
1
vote
1answer
89 views

Do I have to convert my project file to use MSBuild 4?

I have a C# .proj file that using .Net Framework 3.5. Currently the solution that ties the .proj files uses Visual Studio 2008. Our daily build currently uses MSBuild 3.5. I know that you can specify ...
1
vote
2answers
172 views

MSBuild ResolveProjectReferences Error

My MSBuild build script executes fine on all the development machines, but fails to run on the build server, except for the Trunk build. Branches all fail with the following warnings indicating the ...
1
vote
1answer
146 views

Output tag - TaskParameter and PropertyName, ItemName - what do this two include?

The msbuild contains output tag. It has avialable attributes: TaskParameter and PropertyName, ItemName. How they can be used? What are they containing? Please, can you help me to understand and give ...
1
vote
1answer
322 views

Help Updating XML file using MSBuild Extensions 4 with namespaces

I'm having some trouble getting MSBuild extensions 4.0 to update an XML file once a namespace is involved. When I have a simple XML file with no namespace then fine, but once i attempt to update an ...
1
vote
1answer
341 views

MSBuild & TFS2010 Find Dlls

I am trying to create a custom MSBuild task that will run my nUnit tests either locally or during a TFS2010 build. The script works great locally but I can't seem to find the test dlls on the TFS ...
1
vote
2answers
324 views

Are assemblies compiled with MsBuild 4.0 compatible with computers which have only .NET 3.5?

In a project which target framework is 3.5 the following line compiles with MsBuild 4.0: aEnumerable.Select(aMethod); But MsBuild 3.5 requires me to write: aEnumerable.Select(item => ...
1
vote
1answer
865 views

how to run target from post build events using MSBuild

I want to run a target in csproj file using post build events from the visual studio properties window (not from cmd promt). Is that possible? Please explains thks
1
vote
1answer
374 views

build managed c++ project in .net 3.5 using vs2010 (msbuild4)

Is it possible to build a managed c++ project in .net 3.5 using vs2010 ? There are different opinions around but I haven't being able to do this. Any ideas?
1
vote
1answer
377 views

My project builds with MSBuild 4 but not with MSBuild 3.5 even though I'm targeting the same version of the .NET Framework (3.5)?

When I build my solution using MSBuild 4 it compiles successfully: C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe MySolution.sln Build succeeded. 0 Warning(s) 0 Error(s) But when I ...
1
vote
1answer
176 views

Using WriteCodeFragment MSBuild Task

I am trying to use WriteCodeFragment MSBuild task to create AssemblyVersion attribute. I having a a problem creating a property group to correctly pass the ITaskItem array required for processing. Can ...
1
vote
1answer
918 views

Running MSTest UnitTests using a MSBuild Script

Could you please guide me how to run MSTest unit tests usiing a MSBuild script. Thank you very much
1
vote
3answers
345 views

Reading registry key fails with MSBuild Extension Pack 4.0

I am using MSBuild Extension Pack 4.0 to do my local development deployment. When using the class MSBuild.ExtensionPack.Computer.Registry to read a registry key (to get an installation directory) it ...

1 2 3