Questions tagged [build-server]

Build sever is interchangeably used for the machine that is used to compile the application code at a scheduled time and the CI Tools such as Cruise Control, Teamcity etc.

Build server is typically used for the machine used to compile the source code at a scheduled time. This is different from the developer's machine since this is a controlled environment and is only supposed to have the pre-requisites required for compilation.

With the evolution of Continuous Integration, Build Server is also interchangeably used for the CI Applications such as Teamcity, Cruise Control, Jenkins or Bamboo. These applications take care of executing the builds and also a number of other activities such as unit test execution, deployment, various other quality checks on the code and report them in a nice presentable manner.

234 questions
0
votes
0 answers

How to add reference to a project in another solution? (Nuget packages managed at solution level)

I'm checking for ways to add a reference to a project in another solution. To be specific, I can add the reference to a project, even if it is in another solution. But I met 2 issues: It refer the project by relative path, which may or may not…
Hoàng Long
  • 10,746
  • 20
  • 75
  • 124
0
votes
1 answer

xunit.core is incompatible with version of NuGet

I added a new project to the solution. I've added some nuget packages however it fails when building on TFS. It works fine when building locally. I get the following error messages: C:\Builds\8\Server-Dev-CI\src\.nuget\NuGet.targets (58): The…
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
0
votes
1 answer

TFS ConvertWorkspaceItem error

I'm trying to get Uri path from Local path of Build directory. I've added ConvertWorkspaceItem however I get an error: What am I doing wrong? EDIT This is the way I've set it up. I get valid BuildDirectory (C:\builds...) and I want to get a server…
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
0
votes
1 answer

TFS Build Server to use separate user for TFS access

I'm trying to set-up a new build server for my TFS 2013 installation. On a new machine, I've configured a build user: On test, this approved the user fine; however, running the readiness checks reports: My interpretation of this error is that…
Paul Michaels
  • 16,185
  • 43
  • 146
  • 269
0
votes
1 answer

How to build a project that relies on a third party COM library on a build server?

I have a project that I am developing that uses a third party COM library as a reference and I would like to build this project on a Visual Studio Team Services build client. My first idea is to create a MSBuild task that checks to see if the COM…
PlTaylor
  • 7,345
  • 11
  • 52
  • 94
0
votes
1 answer

How do you trigger a build when you check in code using VSO and visual studio 2013?

I am developing using Visual Studio 2013 with Visual Studio Online for source control. I want to prevent check-in if the build that is triggered is returned false. Using the steps below, don't see how the builds are happening and not sure how to…
Chaka
  • 1,709
  • 11
  • 33
  • 58
0
votes
1 answer

Newtonsoft.Json.dll being copied from wrong location in the build server

I got some strange issue here, have a software that build normally in Visual Studio, all references where added using NuGet, and the Newtonsoft.Json.dll is in the packages folder and also the reference points to that folder. When building in the…
Fabito
  • 1,165
  • 2
  • 13
  • 30
0
votes
1 answer

No iOS simulator or device appear on Visual Studio

I'm with business account on build server and visual studio My build host is connected: On diagnose, just the last step isn't pass, is "out dated" The IOS project is the start up project. The solution's configuration and platform are "Debug" or…
0
votes
1 answer

Build multiple independent projects in the same solution in TeamCity

I have an MVC app in VS2013, and it has several related web/service projects, and one console app that is used for running SQL scripts against the database (it uses DbUP, to integrate with Octopus Deploy). How can I generate NuGet Packages for both…
Silviu Preda
  • 628
  • 1
  • 10
  • 31
0
votes
1 answer

TFS Build Server 2013 can not be configured with a TFS Server 2010 collections because its not compatible

We actually have a Windows Server 2008 R2 with Team Foundation Server 2010 installed, which has a projectcollection configured. A databaseproject was migrated from Visual Studio Premium 2010 to Visual Studio Premium 2012 and checked in to…
ZDM2
  • 21
  • 1
0
votes
1 answer

type or namespace name 'IBehavior' could not be found on TFS Build Server

I'm currently working on a Windows 8.1 Store application. In my development environment, the solution builds successfully. But when the solution is built on a TFS Build Server, it fails with messages : behaviors\MultiSelectBehaviorBase.cs (1): The…
arnaud del.
  • 904
  • 12
  • 27
0
votes
0 answers

Jenkins Windows Slave Not displaying Stdout In Console Log

I have a Windows Master running Jenkins and another PC configured as a Windows Slave. I have started the windows slave from both a web browser and from the command line with the same results. The stdout from the build running on my slave isn't…
gfree
  • 479
  • 7
  • 16
0
votes
1 answer

How to set up and maintain directory structure in TFS build server?

So I have this pretty huge solution with many projects, few of them use dlls from other projects in this solution, some projects copy files to other directories after build is performed. (as post build events) when I build the solution locally on my…
MOses
  • 71
  • 9
0
votes
1 answer

Nuget corrupt packages

I've setup a build server on a Rackspace cloud server (Windows 2008 R2) and my ASP.Net projects are using nuget package restore. When the build runs I get failures when nuget downloads packages, for example: error : Unable to read package from path…
Dan
  • 802
  • 1
  • 9
  • 19
0
votes
1 answer

BuildprocessTemplate running InvokeProcess, getting "File not found"

I am trying to run a batch file as part of my build with the InvokeProcess activity. However any combination of FileName and WorkingDirectory makes the build fail with the "File not found: NameOfMyBatchFile.bat" message. Any tips on how to…