0
votes
1answer
25 views

How can I collect name of dlls, which have already built during a running build.

I have TFS 2012 with Build Agent and Buld Controller. If I start a build, which is very time consuming, I would like to write to the log file the names of dlls that have been built (like build ...
1
vote
0answers
60 views

How to get latest code from TFService using alternate credentials?

as part of our continues integration process we want to get latest code from TFService in order to execute automated tests locally. We already could download the latest builds, but we cannot execute ...
0
votes
1answer
120 views

Can Visual Studio 2012 do a custom build such as: compile project A > compile and link project B > link project A?

I am looking for a way to builds projects in this order with Visual Studio 2012 (C++ but might be a general question): Compile ProjectA (I just need the .objs) Compile and link ProjectB Link ...
2
votes
2answers
147 views

How to automatically download the last build from TFS online?

as part of the continues integration process we want to download the last build form TFS online in order to execute automated tests locally. Do you know if there is a way to download it ...
0
votes
2answers
44 views

MSBuild get all project referencing/using a project

We want to setup a build process to prevent breaking changes on our branch. We have a common library/project being referenced by multiple projects. So that, when a change is made on this common ...
0
votes
0answers
87 views

Build custom files w/o 'Custom Tool' in MSVS2012

What I like to do is compile a custom file to generate a C# file. I only need it to compile when its been changed but compiling everytime is ok. When I looked around I kept finding reference to ...
6
votes
4answers
306 views

MSBuild to copy dynamically generated files as part of project dependency

I have a custom msbuild task that is generating some output files to the output directory ($(TargetDir)) of a ProjectA. Current code is something like this: <MyCustomTask ...> <Output ...
-1
votes
2answers
60 views

Visual studio 2010: Where is variable like $(…)? [closed]

I would like to know where variables like$(...) are declared and how to define a custom one. I mean, when you open a C# project configuration file (.csproj) there are a lot of variable like: ...
4
votes
1answer
120 views

Run an MSBuild target only if project is actually built

I have an MSBuild file that builds */.sln files (builds all .sln files that exist). The build uses the Build target, so if no changes were made to input files, no project should be built again. I ...
0
votes
0answers
48 views

MSBuild. How does one build “By Solution” but also digitally signing each assembly?

I'm trying to sign my assemblies inside of MSBuild. Let's say my "MySuperCoolSolution001.sln" is composed of 3 csprojects. (Not seen). By building the (one) Solution(.sln), will that pass the ...
1
vote
1answer
134 views

creating a collection variable in MSBuild .targets

Context An annoying Excel add-in compilation bug exists and the only way I am currently able to work around it is by editing the VSTO MSBuild .targets file C:\Program ...
3
votes
1answer
604 views

Step by step, how do I add a custom build step for every file of a given type in Visual Studio 2010?

The Problem I have a bunch of custom files in a visual studio 2010 project. I need to run a tool on those custom files when they change. The tool generates .h files included by existing .cpp files. ...
1
vote
3answers
96 views

Build only changed item or build all ,which is preferred in continuous integration?

Our software is split into multiple components. Msbuild scripts automate our build and batch scripts to invoke it. We are taking the daily build of our components even if we have small changes. We ...
0
votes
2answers
103 views

.NET Building Process - Github/Git and Dependent Projects

I'm currently using Github/Git for two .NET solutions. The first solution is a library of common .NET code for all projects at my company, the second solution is a ASP.NET MVC Web Application. What ...
2
votes
3answers
2k views

Automated Slow Cheetah Build methods

I don't want to install Slow Cheetah on all the build servers. We are using Slow Cheetah for config transformations and it is working perfectly fine. It generates multiple app.config files and we ...
0
votes
1answer
880 views

TFS Build/MSBuild 2010 bin folder auto redirection to binaries folder not redirecting all projects

I have TFS2010 build workflow that compiles our solution which contains ~100 projects. Compilation is successful, tests run as expected etc. The issue I have relates to the redirection of the bin ...
1
vote
1answer
194 views

Visual Studio Build Targets

i have a project in c# containing a graphical user interface. Now we are getting a second hardware backend. What we want is the possibility to decide before compiling the project which library for the ...
0
votes
1answer
155 views

Run msbuild task before ccnet generates the label

The exact sequence of ccnet operations(taken from here): 1) Wait for the triggers to awaken. 2) Ask the source control system for a list of the modifications since the last build. 3) If any ...
0
votes
0answers
120 views

Solution or machine level targets for Visual Studio Builds

Win7 64 bit ultimate, VS11 RC ultimate. I have >200 .csprojs and I would like to hook into them to define a custom task, custom property, or import target. Things I've tried so far with no signs of ...
2
votes
2answers
89 views

Assembly to contain file description BranchName_Timestamp_Changeset

I want assemblies that are built in queue in build machine to have custom assembly details which helps us track in finding bugs. Ex I want file description of assembly to contain ...
1
vote
3answers
157 views

Where can I see the build script used by Visual Studio?

Where can I find the build script -all the list of tools used to build and link the assemlies like al.exe etc.-that BUILDS, REBUILDS the visual-Studio solutions?
1
vote
4answers
407 views

Why do we increment build number every time even for nightly build?

What is the use of incrementing version number for nightly build? In our project we will increment build numbers only when we release it for system testing. Please some one clarify me. What are all ...
1
vote
1answer
394 views

Visual Studio 2010 custom output path for references

I have VS2010 project with several third-party references. Is there any way to automatically output these references to $(OutputPath)\Libraries instead of just $(OutputPath)? Right now I have a ...
0
votes
1answer
125 views

Deployment failed with error : login failed for user 'xx'

The deployment of the build in TFS failed within 10 seconds with the following error. Deployment fail with error: Login failed for user 'XX' Any help Thanks, suren
5
votes
1answer
467 views

YUI compressor and TFS Build

We have a project where the .js and .css files gets compressed with YUI Compressor. A very good tool. We also use TFS 2010 as a build server with nightly builds that also deploys to our dev web site. ...
2
votes
1answer
306 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 ...
2
votes
0answers
96 views

Customizing Auto-Build for multiple C++-Projects

Hy guys, for a project at the university we're faced with the following problem: For coverage analysis purposes we should instrument the code of several C++-Projects, which are automatically build ...
0
votes
0answers
350 views

How to Mimic/Use AllFilesInTheProject in TFS 2010 build

I have a web project that uses AllFilesInTheProject setting to cause all files to be published. This works great, but TFS 2010 build process templates do not respect this flag. How can I create a ...
0
votes
1answer
252 views

TFS - Release Notes - List of bugs “Resolved” in the current branch

We are using Visual Studio 2010 and TFS. We have 4 environments that we use. They are as follows: DEV - For the development team to test integration QA - For our QA team to perform their tests UAT ...
3
votes
2answers
931 views

How does MSBuild check whether a target is up to date or not?

MSBuild emits following message for up to date targets: Skipping target "MyTarget" because all output files are up-to-date with respect to the input files. How actual check is performed?
1
vote
1answer
1k views

Packaging web projects with MSBuild

I have a solution with 5 web projects and want them packaged so i run msbuild mysolution.sln /t:Package after building it and get this: C:\mysolution.sln.metaproj : error MSB4057: The target ...
0
votes
1answer
624 views

When using Wix/Votive in Visual Studio 2010, Is there a way to get Votive to automatically extract registry entries for COM Interop?

When using Wix/Votive to create setup projects with Visual Studio integration, it seems like COM registration is a big hole in the feature set. Both Visual Studio and the integrated Visual Studio ...
4
votes
4answers
2k views

How to read property value from external file?

I have AssemblyInfo.cs file automatically generated during build. Here's part of .csproj file: <PropertyGroup> <Major>2</Major> <Minor>3</Minor> ...
0
votes
2answers
372 views

MSBuild.exe not building projects in parallel

I use MSBuild.exe to build my Visual C++ Solution. One project in the solution compiles to a static library (let's called it MyLib.lib), and the many other projects are small tools which link to ...
1
vote
1answer
716 views

Reasons to use Rake over NAnt or MSBuild

I've seen several .NET projects (e.g. FluentNHibernate) use Ruby's rake to run their build, rather than using .Net tools, such as NAnt or MSBuild. What is the advantage to doing this? We're in the ...
2
votes
2answers
740 views

Multiple EXE in Visual Studio solution - putting them all in a single output folder

I'm probably just having a brain fart, but I have 2 library assembly projects in a solution, and 3 separate console EXEs which depend upon them - all in the same solution. What's the best way to have ...
0
votes
2answers
351 views

Post-Builds in TFS Team Build best practice

i have a question about Post-Builds. We have a Post-Build in project settings. This Post-Build task compress JavaScript because of Web Application performance. Assembly path is assigned by variable ...
0
votes
1answer
224 views

.NET project build automation

I'm very green when it comes to build automation under windows and capability of that OS. So I'll explain what I would like to achieve bringing up Debian scenario from my previous work. So I had 2 ...
1
vote
1answer
1k views

Visual Studio Pre build events and batch set

I'm trying to create call a batch file which sets a bunch of environment variables prior to building. The batch file looks something like this (it's automatically generated before-hand to detect ATI ...
2
votes
3answers
382 views

Howto build C# solution for different frameworks?

Which choices I have to build a VS2008 solution for different target frameworks, with only "one click"? I need to build for .net-2.0 and netcf-2.0. The problem is that I need referencing different ...
1
vote
1answer
2k views

In Team foundation server what is build agent and controller?

I am unable to grasp the concept of build server in Team foundation. Can anybody explain ? Also what is the build agent and controller in the foundation server ?
5
votes
3answers
2k views

build .net solution from batch file

I have a solution file comprising of 15 projects using a few third party dll references. I want to be able to build the solution from a batch file. What is the best way to do this? Thanks
3
votes
1answer
552 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 ...
5
votes
3answers
280 views

What hardware improvements should we make to speed up our build machine?

We have a build machine running in our development department, which we've set up to build continuously throughout the working day. What this does is: Deletes the source code previously checked out ...
0
votes
3answers
559 views

copy files after successful build

I'm working on a application where multiple dev will check-in everyday. I want to copy latest files only after check-in and successful TFS build to a share location. Currently I'm using post build ...
3
votes
1answer
1k views

MSBuild Fails to remove Binaries directory

I am building two solutions with MSBuild: <ItemGroup> <SolutionToBuild Include="$(BuildProjectFolderPath)/HostASPX/SolutionA.sln"/> <SolutionToBuild ...
1
vote
1answer
3k views

Why can't MSBuild ToolsVersion 4.0 build older projects?

We're using Cruse Control to manage our build process. AS we convert vs2008 projects to vs2010, we're leaving the target framework set at 3.5 for web and class library projects. At this point we're ...
0
votes
1answer
161 views

Embed application compilation time stamp

Is there an easy way to configure in a build process to write in the time stamp of the build to be displayed in the application to have something like "This page was last updated: 06/26/2010"
0
votes
1answer
234 views

Reusing MSBuild targets for different build types

I have got a problem with reusing the same MSBuild targets for different build types on TFS. Let me describe the situation. I have got two build types (CI - for continuous integration and RC - for ...
22
votes
5answers
13k views

Visual Studio 2010, how to build projects in parallel on multicore

I have a big solution with more than 40 projects. Almost half of them are test projects. In my project we use both Code Contracts, Code Analysis, Style Analysis. I want to be able to build the ...

1 2 3