Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
2k views

Can you use multiple working folders with TFS?

In projects in which the workspace has only one working folder, my build scripts work great. Now that I am working with a new project that required 2 working folders, all of the checkout and checkin ...
1
vote
1answer
63 views

Edit xml using regular expression in msbuild?

i am working with msbuild script.i want to comment particular line using regular expression in msbuild .pls help me to solve this issue??please give one example other than editing version using ...
1
vote
2answers
72 views

Get CruiseControl descriptive errors

My cruisecontrol runs two nant scripts and it builds by using msbuild. Msbuild is failing without giving any errors. Is there any way to get more error details? Below is how I have configured ...
1
vote
2answers
299 views

MSBuild: define subprojects build configuration in BuildEngine

I'm using BuildEngine as a step to create a one click build environment. The code is the following: Engine engine = new Engine(); FileLogger logger = new FileLogger { Parameters = ...
1
vote
2answers
389 views

Passing MsBuild Command Line Arguments with BuildEngine

I have the following code to build a project from another C# app: var buildEngine = new Engine(); buildEngine.RegisterLogger(new ConsoleLogger()); var success = ...
1
vote
4answers
1k views

Microsoft.Build.Engine Error (default targets): Target GetFrameworkPaths: Could not locate the .NET Framework SDK

I am writing a webservice, that when called should build a C# project. I'm using the framework 2 reference, Microsoft.Buld.Engine and Microsoft.Build.Framework. If you look under the '<Import>' ...
1
vote
0answers
118 views

How do I control where the output of a ClickOnce application is built (using Microsoft.Build.BuildEngine) to?

I have a ClickOnce WPF application that I am using Microsoft.Build.BuildEngine to build. Everything appears to be working correctly, but when doing a targeted build to publish the application it is ...
1
vote
1answer
225 views

How do I publish a ClickOnce application using Microsoft.Build.BuildEngine

I have a WPF, ClickOnce application that I am trying to build using the Microsoft.Build.BuildEngine. I believe my question actually boils down to "how do I do the command line /target:publish using ...
1
vote
2answers
1k views

Microsoft.Build.BuildEngine.Engine throws error when building WPF application

I am using Microsoft.Build.BuildEngine.Engine to build a WPF application. This has been working successfully for class libraries and web applications, but now trying to use it to build a WPF ...
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
130 views

how to replace string in file using msbuild?

I want to replace a string such "how r u" in file test.xml with a string "i am fine" in another file xy.xml.using regular expression in ms build. ie i have to read string from one file(xy.xml) and ...
0
votes
1answer
101 views

documentation on how to use MSBuild Namespace in C# Source code

I am looking for some simple answers on how to use funktionality from MSBuild in a c# program. The native documentation seems to be completely useless, because I only find information like: ...
0
votes
3answers
76 views

MSBuild Compile target to generate a dll for a class?

I have a VB Class and when I run : msbuild /t:Compile It generates the Exe for the application that contains the compiled code for the class as well. I want to have a separate dll for my VB class ...
0
votes
1answer
406 views

Getting Build URi or Build number of the last build from MSBuild

I am trying to create a custom task for MSBuild so that it will send an email to the users that sais that a new version is up on the test server. I go the email part done, what i would like to do is ...