Build 'OurProject :: OurProject.Dev.Build' #1.0.1765.342 Started 'Wed Aug 19 17:07:57 BST 2009' on 'buildserver' by 'Subversion' Finished 'Wed Aug 19 17:17:25 BST 2009' with status 'FAILURE Tests failed: 2 (2 new), passed: 358' TeamCity URL http://builds.mycompany.co.uk/viewLog.html?buildId=8748&buildTypeId=bt351.0.1765.342 [17:07:56]: bt35 [17:07:56]: Checking for changes [17:07:57]: Clearing temporary directory: C:\BuildAgent\temp\buildTmp [17:07:57]: Checkout directory: C:\BuildAgent\work\427aac12d86a3c69 [17:07:57]: Updating sources [17:07:57]: [Updating sources] Building incremental patch for VCS root: OurProject trunk [17:07:59]: [Updating sources] Repository sources transferred: 97.04Kb total [17:07:59]: [Updating sources] Updating C:\BuildAgent\work\427aac12d86a3c69 [17:07:59]: Starting build process in C:\BuildAgent\work\427aac12d86a3c69 [17:08:02]: Buildfile: file:///C:/BuildAgent/work/427aac12d86a3c69/OurProject.build [17:08:02]: Target framework: Microsoft .NET Framework 3.5 [17:08:02]: Base Directory: C:\BuildAgent\work\427aac12d86a3c69. [17:08:02]: Target(s) specified: run.build [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: Adding a fileset reference with id 'unitTest.Assemblies'. [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: property [17:08:02]: include [17:08:02]: [include] Including file C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.main.build. [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] Property "build.flex.components" already exists, and "overwrite" is set to false. [17:08:02]: [include] include [17:08:02]: [include] Including file C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.buildproperties.build. [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] include [17:08:02]: [include] Including file C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.initialize.build. [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] property [17:08:02]: [include] include [17:08:02]: [include] Including file C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.oraclebuildutils.include. [17:08:02]: [include] script [17:08:02]: [script] Generated code for the script looks like: //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:2.0.50727.3082 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using NAnt.Core; using NAnt.Core.Attributes; using Oracle.DataAccess.Client; using System; using System.Collections; using System.Collections.Specialized; using System.IO; using System.Text; using System.Text.RegularExpressions; [FunctionSet("oracle", "oracle")] public class nantc9e3b94bd75e45129d6caf96d3fdbd30 : NAnt.Core.FunctionSetBase { // NAnt task for counting objects in an Oracle schema // - writes objects found out to log // - writes total number of objects found to a property set by the caller [TaskName("countoracleobjects")] public class CountOracleObjectsTask : Task { private string _property; private string _dataSource; private string _username; private string _password; private bool _invalidObjectsOnly = false; [TaskAttribute("invalidObjectsOnly", Required=false)] public string InvalidObjectsOnly { get { return _invalidObjectsOnly ? "true" : "false"; } set { _invalidObjectsOnly = value.Equals("true"); } } [TaskAttribute("property", Required=true)] public string Property { get { return _property; } set { _property = value; } } [TaskAttribute("datasource", Required=true)] public string DataSource { get { return _dataSource; } set { _dataSource = value; } } [TaskAttribute("username", Required=true)] public string Username { get { return _username; } set { _username = value; } } [TaskAttribute("password", Required=true)] public string Password { get { return _password; } set { _password = value; } } protected override void ExecuteTask() { Log(Level.Info, "Finding" + (_invalidObjectsOnly ? " INVALID" : "") + " objects in " + Username + "@" + DataSource); OracleConnection conn = new OracleConnection(String.Format("User ID={0};Password={1};Data Source={2}", Username, Password, DataSource)); int objectCount = 0; try { conn.Open(); OracleCommand cmd = new OracleCommand(); cmd.Connection = conn; cmd.CommandText = "select * from all_objects where owner='" + Username + "' and object_name not like 'BIN$%' and object_name not like 'SYS_%$$'"; if (_invalidObjectsOnly) {cmd.CommandText += " and status != 'VALID'";} OracleDataReader dr = cmd.ExecuteReader(); while (dr.Read()) { Log(Level.Info, dr.GetOracleString(5).ToString() + ": " + dr.GetOracleString(1).ToString()); objectCount++; } dr.Close(); } finally { conn.Close(); } Properties[Property] = Convert.ToString(objectCount); Log(Level.Info, "Found " + objectCount + (_invalidObjectsOnly ? " INVALID" : "") + " objects in " + Username + "@" + DataSource); } } public nantc9e3b94bd75e45129d6caf96d3fdbd30(NAnt.Core.Project project, NAnt.Core.PropertyDictionary propDict) : base(project, propDict) { } } [17:08:03]: [script] Scanning assembly "lu9hote5" for extensions. [17:08:03]: [script] Creating TaskBuilder for CountOracleObjectsTask [17:08:03]: [script] Adding task 'countoracleobjects' from :nantc9e3b94bd75e45129d6caf96d3fdbd30+CountOracleObjectsTask [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [script] WeakReference for project is dead. [17:08:03]: [include] loadtasks [17:08:03]: [loadtasks] Scanning assembly "NAnt.Contrib.Tasks" for extensions. [17:08:03]: [loadtasks] Creating TaskBuilder for Deploy [17:08:03]: [loadtasks] Adding task 'btsdeploy' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Deploy [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Export [17:08:03]: [loadtasks] Adding task 'btsexport' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Export [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Host [17:08:03]: [loadtasks] Adding task 'btshost' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Host [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Import [17:08:03]: [loadtasks] Adding task 'btsimport' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Import [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Orchestration [17:08:03]: [loadtasks] Adding task 'btsorchestration' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Orchestration [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Reset [17:08:03]: [loadtasks] Adding task 'btsreset' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Reset [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SendPort [17:08:03]: [loadtasks] Adding task 'btssendport' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.SendPort [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Unbind [17:08:03]: [loadtasks] Adding task 'btsunbind' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Unbind [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Undeploy [17:08:03]: [loadtasks] Adding task 'btsundeploy' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.BizTalk.Undeploy [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseCatCs [17:08:03]: [loadtasks] Adding task 'cccatcs' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseCatCs [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseCheckIn [17:08:03]: [loadtasks] Adding task 'cccheckin' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckIn [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseCheckOut [17:08:03]: [loadtasks] Adding task 'cccheckout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseCheckOut [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseLock [17:08:03]: [loadtasks] Adding task 'cclock' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseLock [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseMkElem [17:08:03]: [loadtasks] Adding task 'ccmkelem' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkElem [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseMkLabel [17:08:03]: [loadtasks] Adding task 'ccmklabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLabel [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseMkLbType [17:08:03]: [loadtasks] Adding task 'ccmklbtype' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseMkLbType [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseRmType [17:08:03]: [loadtasks] Adding task 'ccrmtype' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseRmType [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseUnCheckOut [17:08:03]: [loadtasks] Adding task 'ccuncheckout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnCheckOut [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseUnLock [17:08:03]: [loadtasks] Adding task 'ccunlock' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseUnLock [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ClearCaseUpdate [17:08:03]: [loadtasks] Adding task 'ccupdate' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ClearCase.ClearCaseUpdate [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for GrepTask [17:08:03]: [loadtasks] Adding task 'grep' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Grep.GrepTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for CheckpointTask [17:08:03]: [loadtasks] Adding task 'mkscheckpoint' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Mks.CheckpointTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for GetTask [17:08:03]: [loadtasks] Adding task 'mksget' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Mks.GetTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ChangesTask [17:08:03]: [loadtasks] Adding task 'mkschanges' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Mks.ChangesTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for MsiTask [17:08:03]: [loadtasks] Adding task 'msi' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Msi.MsiTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for MsmTask [17:08:03]: [loadtasks] Adding task 'msm' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Msi.MsmTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for NUnit2ReportTask [17:08:03]: [loadtasks] Adding task 'nunit2report' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.NUnit2Report.NUnit2ReportTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSAddFilesTask [17:08:03]: [loadtasks] Adding task 'pvcsaddfiles' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSAddFilesTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSAddUserTask [17:08:03]: [loadtasks] Adding task 'pvcsadduser' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSAddUserTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSAssignGroupTask [17:08:03]: [loadtasks] Adding task 'pvcsassigngroup' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSAssignGroupTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSChangeGroupTask [17:08:03]: [loadtasks] Adding task 'pvcschangegroup' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSChangeGroupTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSCreateProjectTask [17:08:03]: [loadtasks] Adding task 'pvcscreateproject' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSCreateProjectTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSDeleteGroupTask [17:08:03]: [loadtasks] Adding task 'pvcsdeletegroup' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteGroupTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSDeleteLabelTask [17:08:03]: [loadtasks] Adding task 'pvcsdeletelabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteLabelTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSDeleteTask [17:08:03]: [loadtasks] Adding task 'pvcsdelete' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSDeleteUsersTask [17:08:03]: [loadtasks] Adding task 'pvcsdeleteusers' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSDeleteUsersTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSGetTask [17:08:03]: [loadtasks] Adding task 'pvcsget' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSGetTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSLabelTask [17:08:03]: [loadtasks] Adding task 'pvcslabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSLabelTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSLockTask [17:08:03]: [loadtasks] Adding task 'pvcslock' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSLockTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSPromoteGroupTask [17:08:03]: [loadtasks] Adding task 'pvcspromotegroup' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSPromoteGroupTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSPutTask [17:08:03]: [loadtasks] Adding task 'pvcsput' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSPutTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSRenameLabelTask [17:08:03]: [loadtasks] Adding task 'pvcsrenamelabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSRenameLabelTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for PVCSUnlockTask [17:08:03]: [loadtasks] Adding task 'pvcsunlock' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.PVCS.PVCSUnlockTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Add [17:08:03]: [loadtasks] Adding task 'p4add' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Add [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Change [17:08:03]: [loadtasks] Adding task 'p4change' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Change [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Client [17:08:03]: [loadtasks] Adding task 'p4client' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Client [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Delete [17:08:03]: [loadtasks] Adding task 'p4delete' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Delete [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Edit [17:08:03]: [loadtasks] Adding task 'p4edit' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Edit [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Info [17:08:03]: [loadtasks] Adding task 'p4info' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Info [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Label [17:08:03]: [loadtasks] Adding task 'p4label' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Label [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Labelsync [17:08:03]: [loadtasks] Adding task 'p4labelsync' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Labelsync [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Print [17:08:03]: [loadtasks] Adding task 'p4print' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Print [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Reopen [17:08:03]: [loadtasks] Adding task 'p4reopen' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Reopen [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Revert [17:08:03]: [loadtasks] Adding task 'p4revert' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Revert [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Set [17:08:03]: [loadtasks] Adding task 'p4set' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Set [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Submit [17:08:03]: [loadtasks] Adding task 'p4submit' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Submit [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for P4Sync [17:08:03]: [loadtasks] Adding task 'p4sync' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Perforce.P4Sync [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for AddTask [17:08:03]: [loadtasks] Adding task 'vssadd' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.AddTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for CheckinTask [17:08:03]: [loadtasks] Adding task 'vsscheckin' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.CheckinTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for CheckoutTask [17:08:03]: [loadtasks] Adding task 'vsscheckout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.CheckoutTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for DeleteTask [17:08:03]: [loadtasks] Adding task 'vssdelete' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.DeleteTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for DiffTask [17:08:03]: [loadtasks] Adding task 'vssdiff' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.DiffTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for GetTask [17:08:03]: [loadtasks] Adding task 'vssget' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.GetTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for History [17:08:03]: [loadtasks] Adding task 'vsshistory' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.History [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for LabelTask [17:08:03]: [loadtasks] Adding task 'vsslabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.LabelTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for UndoCheckoutTask [17:08:03]: [loadtasks] Adding task 'vssundocheckout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SourceSafe.UndoCheckoutTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for StarTeamAutoLabel [17:08:03]: [loadtasks] Adding task 'stautolabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamAutoLabel [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for StarTeamCheckin [17:08:03]: [loadtasks] Adding task 'stcheckin' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamCheckin [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for StarTeamCheckout [17:08:03]: [loadtasks] Adding task 'stcheckout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamCheckout [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for StarTeamLabel [17:08:03]: [loadtasks] Adding task 'stlabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamLabel [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for StarTeamList [17:08:03]: [loadtasks] Adding task 'stlist' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.StarTeam.StarTeamList [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMBatch [17:08:03]: [loadtasks] Adding task 'sscmbatch' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMBatch [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMBranch [17:08:03]: [loadtasks] Adding task 'sscmbranch' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMBranch [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMCheckin [17:08:03]: [loadtasks] Adding task 'sscmcheckin' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMCheckin [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMCheckout [17:08:03]: [loadtasks] Adding task 'sscmcheckout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMCheckout [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMFreeze [17:08:03]: [loadtasks] Adding task 'sscmfreeze' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMFreeze [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMGet [17:08:03]: [loadtasks] Adding task 'sscmget' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMGet [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMLabel [17:08:03]: [loadtasks] Adding task 'sscmlabel' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMLabel [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SSCMUnFreeze [17:08:03]: [loadtasks] Adding task 'sscmunfreeze' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SurroundSCM.SSCMUnFreeze [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SvnCheckoutTask [17:08:03]: [loadtasks] Adding task 'svn-checkout' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Svn.SvnCheckoutTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SvnTask [17:08:03]: [loadtasks] Adding task 'svn' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Svn.SvnTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SvnUpdateTask [17:08:03]: [loadtasks] Adding task 'svn-update' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Svn.SvnUpdateTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ApplicationPool [17:08:03]: [loadtasks] Adding task 'iisapppool' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.ApplicationPool [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for CreateVirtualDirectory [17:08:03]: [loadtasks] Adding task 'mkiisdir' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.CreateVirtualDirectory [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for DeleteVirtualDirectory [17:08:03]: [loadtasks] Adding task 'deliisdir' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.DeleteVirtualDirectory [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for VirtualDirectoryInfo [17:08:03]: [loadtasks] Adding task 'iisdirinfo' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Web.VirtualDirectoryInfo [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ADSIGetPropertyTask [17:08:03]: [loadtasks] Adding task 'adsigetprop' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ADSIGetPropertyTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ADSISetPropertyTask [17:08:03]: [loadtasks] Adding task 'adsisetprop' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ADSISetPropertyTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Astyle [17:08:03]: [loadtasks] Adding task 'astyle' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Astyle [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for COMRegisterTask [17:08:03]: [loadtasks] Adding task 'comregister' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.COMRegisterTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ChangeDirectory [17:08:03]: [loadtasks] Adding task 'cd' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ChangeDirectory [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ChecksumTask [17:08:03]: [loadtasks] Adding task 'checksum' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ChecksumTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ChooseTask [17:08:03]: [loadtasks] Adding task 'choose' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ChooseTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for CodeStatsTask [17:08:03]: [loadtasks] Adding task 'codestats' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.CodeStatsTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ConcatTask [17:08:03]: [loadtasks] Adding task 'concat' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ConcatTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for DependsTask [17:08:03]: [loadtasks] Adding task 'depends' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.DependsTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for DicsoTask [17:08:03]: [loadtasks] Adding task 'disco' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.DicsoTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for FxCopTask [17:08:03]: [loadtasks] Adding task 'fxcop' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.FxCopTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for GacInstallTask [17:08:03]: [loadtasks] Adding task 'gac-install' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.GacInstallTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for GacTask [17:08:03]: [loadtasks] Adding task 'gac' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.GacTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for GacUninstallTask [17:08:03]: [loadtasks] Adding task 'gac-uninstall' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.GacUninstallTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for HxCompTask [17:08:03]: [loadtasks] Adding task 'hxcomp' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.HxCompTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for HxRegTask [17:08:03]: [loadtasks] Adding task 'hxreg' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.HxRegTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for IniReadTask [17:08:03]: [loadtasks] Adding task 'iniread' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.IniReadTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for IniWriteTask [17:08:03]: [loadtasks] Adding task 'iniwrite' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.IniWriteTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for MsbuildTask [17:08:03]: [loadtasks] Creating TaskBuilder for MgmtClassGenTask [17:08:03]: [loadtasks] Adding task 'mgmtclassgen' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.MgmtClassGenTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for NGenTask [17:08:03]: [loadtasks] Adding task 'ngen' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.NGenTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for NUnitReportTask [17:08:03]: [loadtasks] Adding task 'nunitreport' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.NUnitReportTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for RecordTask [17:08:03]: [loadtasks] Adding task 'record' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.RecordTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for RegasmTask [17:08:03]: [loadtasks] Creating TaskBuilder for ScpTask [17:08:03]: [loadtasks] Adding task 'scp' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ScpTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SlingshotTask [17:08:03]: [loadtasks] Adding task 'slingshot' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SlingshotTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for SqlTask [17:08:03]: [loadtasks] Adding task 'sql' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.SqlTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for TryCatchTask [17:08:03]: [loadtasks] Adding task 'trycatch' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.TryCatchTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for TypedCollectionTask [17:08:03]: [loadtasks] Adding task 'typedcollection' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.TypedCollectionTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for ValidateXmlTask [17:08:03]: [loadtasks] Adding task 'validatexml' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.ValidateXmlTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for Vb6Task [17:08:03]: [loadtasks] Adding task 'vb6' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.Vb6Task [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for VersionTask [17:08:03]: [loadtasks] Adding task 'version' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.VersionTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for WsdlTask [17:08:03]: [loadtasks] Adding task 'wsdl' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.WsdlTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] Creating TaskBuilder for XsdTask [17:08:03]: [loadtasks] Adding task 'xsd' from C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Tools\NAntContrib0.85\bin\NAnt.Contrib.Tasks.dll:NAnt.Contrib.Tasks.XsdTask [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: [loadtasks] WeakReference for project is dead. [17:08:03]: Build sequence for target `run.build' is prebuild, validatebuildproperties, initializebuildtypesettings, clean, getversion, updateassemblyversion, setupdatabase, buildflexcomponents, buildsolution, restoreversionfiles, copybuildresults, codeanalyze, sourcemonitoranalyze, createndocdocumentation, rununittests, builddrop, build, postbuild, run.build [17:08:03]: Complete build sequence is prebuild, validatebuildproperties, initializebuildtypesettings, clean, getversion, updateassemblyversion, setupdatabase, buildflexcomponents, buildsolution, restoreversionfiles, copybuildresults, codeanalyze, sourcemonitoranalyze, createndocdocumentation, rununittests, builddrop, build, postbuild, run.build, createBuildDirectories, builddatabase, findinvalidobjects, dropdatabase, debug.buildsolution, release.buildsolution, gathermstestcontainers, runmstests, runnunittests, watin, passbuild [17:08:03]: prebuild [17:08:03]: validatebuildproperties [17:08:03]: [validatebuildproperties] ##### VALIDATING BUILD PROPERTIES ... ##### [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] if [17:08:03]: [validatebuildproperties] All build properties validated successfully. [17:08:03]: initializebuildtypesettings [17:08:03]: [initializebuildtypesettings] ##### INITIALIZAING BUILD TYPE SETTINGS ... ##### [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] Warning: The property 'fxcop.project' is not set. The build will continue with the standard fxcop project. [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] Warning: The property 'build.version' is not set. The build will consider the next incremented build version. [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] Warning: The property 'ncover.minimumacceptance.percentage' is not set. The build will continue with the default ncover acceptance criteria. [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] property [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] if [17:08:03]: [initializebuildtypesettings] Registering 'dh-TR' custom culture [17:08:03]: [initializebuildtypesettings] exec [17:08:03]: [exec] Starting 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\RegisterCustomCulture\RegisterCustomCulture\bin\debug\RegisterCustomCulture.exe ()' in 'C:\BuildAgent\work\427aac12d86a3c69' [17:08:04]: [exec] Culture dh-TR already registered! [17:08:04]: [initializebuildtypesettings] All build type settings initialized successfully. [17:08:04]: clean [17:08:04]: [clean] ##### CLEANING WORKING AREA ... ##### [17:08:04]: [clean] if [17:08:04]: [clean] delete [17:08:04]: [clean] Deleting directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject'. ... [17:09:59]: buildsolution [17:09:59]: [buildsolution] ##### COMPILING SOLUTIONS ... ##### [17:09:59]: [buildsolution] property [17:09:59]: [buildsolution] if [17:09:59]: [buildsolution] property [17:09:59]: [buildsolution] property [17:09:59]: [buildsolution] if [17:09:59]: [buildsolution] call [17:09:59]: [call] Build sequence for target `debug.buildsolution' is debug.buildsolution [17:09:59]: [call] Complete build sequence is debug.buildsolution, prebuild, postbuild, validatebuildproperties, initializebuildtypesettings, clean, getversion, updateassemblyversion, setupdatabase, buildflexcomponents, buildsolution, restoreversionfiles, copybuildresults, codeanalyze, sourcemonitoranalyze, createndocdocumentation, rununittests, builddrop, build, run.build, createBuildDirectories, builddatabase, findinvalidobjects, dropdatabase, release.buildsolution, gathermstestcontainers, runmstests, runnunittests, watin, passbuild [17:09:59]: [call] debug.buildsolution [17:09:59]: [debug.buildsolution] Building solution OurProject.sln [17:09:59]: [debug.buildsolution] if [17:09:59]: [debug.buildsolution] if [17:09:59]: [debug.buildsolution] exec [17:09:59]: [exec] Starting 'C:\WINDOWS\Microsoft.NET\Framework\v3.5\msbuild.exe ( "OurProject.sln" /t:Clean;Rebuild /p:Configuration=Debug /logger:ThoughtWorks.CruiseControl.MsBuild.XmlLogger,BuildScripts\Utilities\MSBuildLogger\ThoughtWorks.CruiseControl.MSBuild.dll;Output\CI\OurProject\logs\Build_OurProject.sln.xml)' in 'C:\BuildAgent\work\427aac12d86a3c69' [17:10:00]: [exec] Microsoft (R) Build Engine Version 3.5.30729.1 [17:10:00]: [exec] [Microsoft .NET Framework, Version 2.0.50727.3082] [17:10:00]: [exec] Copyright (C) Microsoft Corporation 2007. All rights reserved. [17:10:02]: [exec] Build started 8/19/2009 5:10:02 PM. [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" on node 0 (Clean;Rebuild target(s)). [17:10:02]: [exec] Building solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\dh.Common.PostSharp.csproj" (2) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\PostSharp.Laos.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\PostSharp.Public.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\dh.Common.PostSharp.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\dh.Common.PostSharp.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\dh.Common.PostSharp.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\OurProject.Service.Configuration.csproj" (3) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\obj\Debug\OurProject.Service.Configuration.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\obj\Debug\OurProject.Service.Configuration.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\OurProject.Service.Configuration.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\OurProject.Service.DataContracts.csproj" (4) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\obj\Debug\OurProject.Service.DataContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\obj\Debug\OurProject.Service.DataContracts.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\OurProject.Service.DataContracts.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\OurProject.Service.FaultContracts.csproj" (5) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\obj\Debug\OurProject.Service.FaultContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\obj\Debug\OurProject.Service.FaultContracts.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\OurProject.Service.FaultContracts.csproj" (Clean target(s)). [17:10:02]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject.DB" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] dh_OurProject_Deploy\dh_OurProject_Flex_Deployment:Clean: [17:10:02]: [exec] The project "OurProject.Flex.Deployment" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] dh_OurProject_Deploy\dh_OurProject_Service_Setup:Clean: [17:10:02]: [exec] The project "OurProject.Service.Setup" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] dh_OurProject_Deploy\dh_OurProject_Web_Setup:Clean: [17:10:02]: [exec] The project "OurProject.Web.Setup" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] dh_OurProject_Deploy\dh_Flex_WebOrb_Deployment_3_6:Clean: [17:10:02]: [exec] The project "dh.Flex.WebOrb.Deployment.3.6" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\OurProject.Service.BusinessEntities.csproj" (6) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\dh.Common.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\obj\Debug\OurProject.Service.BusinessEntities.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\obj\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\OurProject.Service.BusinessEntities.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\OurProject.Service.MessageContracts.csproj" (7) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\obj\Debug\OurProject.Service.MessageContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\obj\Debug\OurProject.Service.MessageContracts.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\OurProject.Service.MessageContracts.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\OurProject.Service.ServiceProxy.csproj" (8) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll.config". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\dh.Common.BS.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\dh.Common.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\dh.Common.PostSharp.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\PostSharp.Laos.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\PostSharp.Public.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\SpreadsheetGear.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\dh.Common.PostSharp.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.Configuration.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\OurProject.Service.ServiceProxy.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\OurProject.Service.ServiceProxy.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\OurProject.Service.ServiceProxy.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\OurProject.csproj" (9) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\dh.Common.BS.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\dh.Common.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\dh.Common.Excel.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\dh.Common.PostSharp.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.Service.Configuration.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.Service.ServiceProxy.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\ICSharpCode.SharpZipLib.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\Microsoft.Practices.ObjectBuilder.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\PostSharp.Laos.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\PostSharp.Public.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\SpreadsheetGear.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\weborb.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.Service.Configuration.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.Service.ServiceProxy.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\dh.Common.PostSharp.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\OurProject.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\OurProject.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\OurProject.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\OurProject.Service.Interfaces.csproj" (10) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\dh.Common.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\obj\Debug\OurProject.Service.Interfaces.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\obj\Debug\OurProject.Service.Interfaces.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\OurProject.Service.Interfaces.csproj" (Clean target(s)). [17:10:02]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\OurProject.Service.ServiceContracts.csproj" (11) on node 0 (Clean target(s)). [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\log4net.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\obj\Debug\ResolveAssemblyReference.cache". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\obj\Debug\OurProject.Service.ServiceContracts.dll". [17:10:02]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\obj\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:02]: [exec] EntityClean: [17:10:02]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:02]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\OurProject.Service.ServiceContracts.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\OurProject.Service.TestUtilities.csproj" (12) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\cacheblock.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\log4net.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\unittest_connections.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\obj\Debug\OurProject.Service.TestUtilities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\obj\Debug\OurProject.Service.TestUtilities.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\OurProject.Service.TestUtilities.csproj" (Clean target(s)). [17:10:03]: [exec] Clean: [17:10:03]: [exec] The project "OurProject.Service.Client" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\OurProject.Service.DataAccess.csproj" (13) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.Configuration.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\obj\Debug\OurProject.Service.DataAccess.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\obj\Debug\OurProject.Service.DataAccess.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\OurProject.Service.DataAccess.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\OurProject.Service.DataContracts.UnitTests.csproj" (14) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\cacheblock.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\log4net.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\unittest_connections.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\obj\Debug\OurProject.Service.DataContracts.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\obj\Debug\OurProject.Service.DataContracts.UnitTests.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\OurProject.Service.DataContracts.UnitTests.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\OurProject.Service.ServiceProxy.UnitTests.csproj" (15) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\cacheblock.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\log4net.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\unittest_connections.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\system.serviceModel.behaviors.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\system.serviceModel.bindings.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\system.serviceModel.client.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\dh.Common.PostSharp.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\PostSharp.Laos.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\PostSharp.Public.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\Rhino.Mocks.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\dh.Common.PostSharp.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.Configuration.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\OurProject.Service.ServiceProxy.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\OurProject.Service.ServiceProxy.UnitTests.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\OurProject.Service.ServiceProxy.UnitTests.csproj" (Clean target(s)). [17:10:03]: [exec] Clean: [17:10:03]: [exec] The project "BuildDependencies" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\OurProject.Service.BusinessLogic.csproj" (16) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\obj\Debug\OurProject.Service.BusinessLogic.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\obj\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\OurProject.Service.BusinessLogic.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\OurProject.Service.DataAccess.UnitTests.csproj" (17) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\cacheblock.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\log4net.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\unittest_connections.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.Interfaces.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.Configuration.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\obj\Debug\OurProject.Service.DataAccess.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\obj\Debug\OurProject.Service.DataAccess.UnitTests.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\OurProject.Service.DataAccess.UnitTests.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\OurProject.Service.ServiceImplementation.csproj" (18) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.PostSharp.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.FaultContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.Interfaces.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.MessageContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\PostSharp.Laos.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\PostSharp.Public.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.FaultContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.MessageContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.PostSharp.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\OurProject.Service.ServiceImplementation.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\OurProject.Service.ServiceImplementation.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\OurProject.Service.ServiceImplementation.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProject.Service.BusinessLogic.UnitTests.csproj" (19) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\cacheblock.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\log4net.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\unittest_connections.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\dh.Common.BS.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\dh.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.DataAccess.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.Interfaces.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\log4net.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\Rhino.Mocks.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.Configuration.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\SpreadsheetGear.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\obj\Debug\ResolveAssemblyReference.cache". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\obj\Debug\OurProject.Service.BusinessLogic.UnitTests.dll". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\obj\Debug\OurProject.Service.BusinessLogic.UnitTests.pdb". [17:10:03]: [exec] EntityClean: [17:10:03]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:03]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProject.Service.BusinessLogic.UnitTests.csproj" (Clean target(s)). [17:10:03]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\OurProject.Service.ServiceImplementation.UnitTests.csproj" (20) on node 0 (Clean target(s)). [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\cacheblock.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\log4net.config". [17:10:03]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\unittest_connections.config". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll.config". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\dh.Common.BS.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\dh.Common.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\dh.Common.PostSharp.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.DataAccess.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.DataContracts.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.FaultContracts.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.Interfaces.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.MessageContracts.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceContracts.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\log4net.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\PostSharp.Laos.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\PostSharp.Public.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.Configuration.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\SpreadsheetGear.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.FaultContracts.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.MessageContracts.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.Configuration.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\dh.Common.PostSharp.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation_Accessor.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation_Accessor.pdb". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\ResolveAssemblyReference.cache". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll". [17:10:04]: [exec] Deleting file "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\OurProject.Service.ServiceImplementation.UnitTests.pdb". [17:10:04]: [exec] EntityClean: [17:10:04]: [exec] Successfully cleaned the output for 0 EDMX files. [17:10:04]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\OurProject.Service.ServiceImplementation.UnitTests.csproj" (Clean target(s)). [17:10:04]: [exec] dh_OurProject_Service_Host:Clean: [17:10:04]: [exec] Web projects do not support the "Clean" target. Continuing with remaining projects ... [17:10:04]: [exec] Clean: [17:10:04]: [exec] Deleting file "OurProject.sln.cache". [17:10:04]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\dh.Common.PostSharp.csproj" (2:3) on node 0 (Rebuild target(s)). [17:10:04]: [exec] Processing 0 EDMX files. [17:10:04]: [exec] Finished processing 0 EDMX files. [17:10:05]: [exec] _CopyFilesMarkedCopyLocal: [17:10:05]: [exec] Copying file from "..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:05]: [exec] Copying file from "..\BuildDependencies\PostSharp.Laos.dll" to "bin\Debug\PostSharp.Laos.dll". [17:10:05]: [exec] Copying file from "..\BuildDependencies\PostSharp.Public.dll" to "bin\Debug\PostSharp.Public.dll". [17:10:05]: [exec] PostSharp: [17:10:05]: [exec] PostSharp 1.0 [1.0.12.469] - Copyright (c) Gael Fraiteur, 2005-2008. [17:10:05]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:07]: [exec] info PS0035: PostSharp: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\PostSharp\dh.Common.PostSharp.il" /QUIET /DLL /PDB "/RESOURCE=C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\PostSharp\dh.Common.PostSharp.res" "/OUTPUT=C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\dh.Common.PostSharp.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=4194304 /STACK=1048576 /ALIGNMENT=512 /MDV=v2.0.50727 [17:10:07]: [exec] Touching C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\obj\Debug\dh.Common.PostSharp.dll.postsharp. [17:10:07]: [exec] CopyFilesToOutputDirectory: [17:10:07]: [exec] Copying file from "obj\Debug\dh.Common.PostSharp.dll" to "bin\Debug\dh.Common.PostSharp.dll". [17:10:07]: [exec] dh.Common.PostSharp -> C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll [17:10:07]: [exec] Copying file from "obj\Debug\dh.Common.PostSharp.pdb" to "bin\Debug\dh.Common.PostSharp.pdb". [17:10:07]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\dh.Common.PostSharp.csproj" (Rebuild target(s)). [17:10:07]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\OurProject.Service.Configuration.csproj" (3:3) on node 0 (Rebuild target(s)). [17:10:07]: [exec] Processing 0 EDMX files. [17:10:07]: [exec] Finished processing 0 EDMX files. [17:10:07]: [exec] _CopyFilesMarkedCopyLocal: [17:10:07]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:07]: [exec] CopyFilesToOutputDirectory: [17:10:07]: [exec] Copying file from "obj\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:07]: [exec] OurProject.Service.Configuration -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll [17:10:07]: [exec] Copying file from "obj\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:07]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\OurProject.Service.Configuration.csproj" (Rebuild target(s)). [17:10:07]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\OurProject.Service.DataContracts.csproj" (4:3) on node 0 (Rebuild target(s)). [17:10:07]: [exec] Processing 0 EDMX files. [17:10:07]: [exec] Finished processing 0 EDMX files. [17:10:08]: [exec] _CopyFilesMarkedCopyLocal: [17:10:08]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:08]: [exec] CopyFilesToOutputDirectory: [17:10:08]: [exec] Copying file from "obj\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:08]: [exec] OurProject.Service.DataContracts -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll [17:10:08]: [exec] Copying file from "obj\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:08]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\OurProject.Service.DataContracts.csproj" (Rebuild target(s)). [17:10:08]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\OurProject.Service.FaultContracts.csproj" (5:3) on node 0 (Rebuild target(s)). [17:10:08]: [exec] Processing 0 EDMX files. [17:10:08]: [exec] Finished processing 0 EDMX files. [17:10:09]: [exec] _CopyFilesMarkedCopyLocal: [17:10:09]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:09]: [exec] CopyFilesToOutputDirectory: [17:10:09]: [exec] Copying file from "obj\Debug\OurProject.Service.FaultContracts.dll" to "bin\Debug\OurProject.Service.FaultContracts.dll". [17:10:09]: [exec] OurProject.Service.FaultContracts -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll [17:10:09]: [exec] Copying file from "obj\Debug\OurProject.Service.FaultContracts.pdb" to "bin\Debug\OurProject.Service.FaultContracts.pdb". [17:10:09]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\OurProject.Service.FaultContracts.csproj" (Rebuild target(s)). [17:10:09]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject.DB" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] dh_OurProject_Deploy\dh_OurProject_Flex_Deployment:Rebuild: [17:10:09]: [exec] The project "OurProject.Flex.Deployment" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] dh_OurProject_Deploy\dh_OurProject_Service_Setup:Rebuild: [17:10:09]: [exec] The project "OurProject.Service.Setup" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] dh_OurProject_Deploy\dh_OurProject_Web_Setup:Rebuild: [17:10:09]: [exec] The project "OurProject.Web.Setup" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] dh_OurProject_Deploy\dh_Flex_WebOrb_Deployment_3_6:Rebuild: [17:10:09]: [exec] The project "dh.Flex.WebOrb.Deployment.3.6" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:09]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\OurProject.Service.BusinessEntities.csproj" (6:3) on node 0 (Rebuild target(s)). [17:10:09]: [exec] Processing 0 EDMX files. [17:10:09]: [exec] Finished processing 0 EDMX files. [17:10:09]: [exec] _CopyFilesMarkedCopyLocal: [17:10:09]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:10]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:10]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:10]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:10]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:10]: [exec] CopyFilesToOutputDirectory: [17:10:10]: [exec] Copying file from "obj\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:10]: [exec] OurProject.Service.BusinessEntities -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll [17:10:10]: [exec] Copying file from "obj\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:10]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\OurProject.Service.BusinessEntities.csproj" (Rebuild target(s)). [17:10:10]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\OurProject.Service.MessageContracts.csproj" (7:3) on node 0 (Rebuild target(s)). [17:10:10]: [exec] Processing 0 EDMX files. [17:10:10]: [exec] Finished processing 0 EDMX files. [17:10:11]: [exec] _CopyFilesMarkedCopyLocal: [17:10:11]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:11]: [exec] CopyFilesToOutputDirectory: [17:10:11]: [exec] Copying file from "obj\Debug\OurProject.Service.MessageContracts.dll" to "bin\Debug\OurProject.Service.MessageContracts.dll". [17:10:11]: [exec] OurProject.Service.MessageContracts -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll [17:10:11]: [exec] Copying file from "obj\Debug\OurProject.Service.MessageContracts.pdb" to "bin\Debug\OurProject.Service.MessageContracts.pdb". [17:10:11]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\OurProject.Service.MessageContracts.csproj" (Rebuild target(s)). [17:10:11]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\OurProject.Service.ServiceProxy.csproj" (8:2) on node 0 (Rebuild target(s)). [17:10:11]: [exec] Processing 0 EDMX files. [17:10:11]: [exec] Finished processing 0 EDMX files. [17:10:12]: [exec] _CopyFilesMarkedCopyLocal: [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:12]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll" to "bin\Debug\dh.Common.PostSharp.dll". [17:10:12]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\PostSharp.Laos.dll" to "bin\Debug\PostSharp.Laos.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\PostSharp.Public.dll" to "bin\Debug\PostSharp.Public.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:12]: [exec] Copying file from "..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:12]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb" to "bin\Debug\dh.Common.PostSharp.pdb". [17:10:12]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:12]: [exec] PostSharp: [17:10:12]: [exec] PostSharp 1.0 [1.0.12.469] - Copyright (c) Gael Fraiteur, 2005-2008. [17:10:15]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:17]: [exec] info PS0035: PostSharp: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\PostSharp\OurProject.Service.ServiceProxy.il" /QUIET /DLL /PDB "/RESOURCE=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\PostSharp\OurProject.Service.ServiceProxy.res" "/OUTPUT=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\OurProject.Service.ServiceProxy.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=4194304 /STACK=1048576 /ALIGNMENT=512 /MDV=v2.0.50727 [17:10:18]: [exec] Touching C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\obj\Debug\OurProject.Service.ServiceProxy.dll.postsharp. [17:10:18]: [exec] _CopyAppConfigFile: [17:10:18]: [exec] Copying file from "app.config" to "bin\Debug\OurProject.Service.ServiceProxy.dll.config". [17:10:18]: [exec] CopyFilesToOutputDirectory: [17:10:18]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceProxy.dll" to "bin\Debug\OurProject.Service.ServiceProxy.dll". [17:10:18]: [exec] OurProject.Service.ServiceProxy -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll [17:10:18]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceProxy.pdb" to "bin\Debug\OurProject.Service.ServiceProxy.pdb". [17:10:18]: [exec] PostBuildEvent: [17:10:18]: [exec] 1 file(s) copied. [17:10:18]: [exec] 1 file(s) copied. [17:10:18]: [exec] 1 file(s) copied. [17:10:18]: [exec] 1 file(s) copied. [17:10:18]: [exec] 1 file(s) copied. [17:10:18]: [exec] 1 file(s) copied. [17:10:18]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\OurProject.Service.ServiceProxy.csproj" (Rebuild target(s)). [17:10:18]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\OurProject.csproj" (9:2) on node 0 (Rebuild target(s)). [17:10:18]: [exec] Processing 0 EDMX files. [17:10:18]: [exec] Finished processing 0 EDMX files. [17:10:20]: [exec] _CopyFilesMarkedCopyLocal: [17:10:20]: [exec] Copying file from "..\BuildDependencies\dh.Common.BS.dll" to "bin\dh.Common.BS.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\dh.Common.dll" to "bin\dh.Common.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\dh.Common.Excel.dll" to "bin\dh.Common.Excel.dll". [17:10:20]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll" to "bin\dh.Common.PostSharp.dll". [17:10:20]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "bin\OurProject.Service.Configuration.dll". [17:10:20]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll" to "bin\OurProject.Service.ServiceProxy.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\ICSharpCode.SharpZipLib.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\log4net.dll" to "bin\log4net.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Microsoft.Practices.ObjectBuilder.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\PostSharp.Laos.dll" to "bin\PostSharp.Laos.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\PostSharp.Public.dll" to "bin\PostSharp.Public.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\SpreadsheetGear.dll" to "bin\SpreadsheetGear.dll". [17:10:20]: [exec] Copying file from "..\BuildDependencies\weborb.dll" to "bin\weborb.dll". [17:10:20]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\OurProject.Service.Configuration.pdb". [17:10:20]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.pdb" to "bin\OurProject.Service.ServiceProxy.pdb". [17:10:20]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb" to "bin\dh.Common.PostSharp.pdb". [17:10:20]: [exec] PostSharp: [17:10:20]: [exec] PostSharp 1.0 [1.0.12.469] - Copyright (c) Gael Fraiteur, 2005-2008. [17:10:22]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:23]: [exec] info PS0035: PostSharp: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\PostSharp\OurProject.il" /QUIET /DLL /PDB "/RESOURCE=C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\PostSharp\OurProject.res" "/OUTPUT=C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\OurProject.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=4194304 /STACK=1048576 /ALIGNMENT=4096 /MDV=v2.0.50727 [17:10:23]: [exec] Touching C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\obj\Debug\OurProject.dll.postsharp. [17:10:23]: [exec] CopyFilesToOutputDirectory: [17:10:23]: [exec] Copying file from "obj\Debug\OurProject.dll" to "bin\OurProject.dll". [17:10:23]: [exec] OurProject -> C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\bin\OurProject.dll [17:10:23]: [exec] Copying file from "obj\Debug\OurProject.pdb" to "bin\OurProject.pdb". [17:10:23]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\OurProject.csproj" (Rebuild target(s)). [17:10:23]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\OurProject.Service.Interfaces.csproj" (10:3) on node 0 (Rebuild target(s)). [17:10:23]: [exec] Processing 0 EDMX files. [17:10:23]: [exec] Finished processing 0 EDMX files. [17:10:23]: [exec] _CopyFilesMarkedCopyLocal: [17:10:23]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:23]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:23]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:23]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:23]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:23]: [exec] CopyFilesToOutputDirectory: [17:10:23]: [exec] Copying file from "obj\Debug\OurProject.Service.Interfaces.dll" to "bin\Debug\OurProject.Service.Interfaces.dll". [17:10:23]: [exec] OurProject.Service.Interfaces -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll [17:10:23]: [exec] Copying file from "obj\Debug\OurProject.Service.Interfaces.pdb" to "bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:23]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\OurProject.Service.Interfaces.csproj" (Rebuild target(s)). [17:10:23]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\OurProject.Service.ServiceContracts.csproj" (11:3) on node 0 (Rebuild target(s)). [17:10:23]: [exec] Processing 0 EDMX files. [17:10:23]: [exec] Finished processing 0 EDMX files. [17:10:24]: [exec] _CopyFilesMarkedCopyLocal: [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:24]: [exec] CopyFilesToOutputDirectory: [17:10:24]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceContracts.dll" to "bin\Debug\OurProject.Service.ServiceContracts.dll". [17:10:24]: [exec] OurProject.Service.ServiceContracts -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll [17:10:24]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceContracts.pdb" to "bin\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:24]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\OurProject.Service.ServiceContracts.csproj" (Rebuild target(s)). [17:10:24]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\OurProject.Service.TestUtilities.csproj" (12:2) on node 0 (Rebuild target(s)). [17:10:24]: [exec] Processing 0 EDMX files. [17:10:24]: [exec] Finished processing 0 EDMX files. [17:10:24]: [exec] _CopyFilesMarkedCopyLocal: [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:24]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:24]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:24]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:25]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:25]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:25]: [exec] _CopyOutOfDateSourceItemsToOutputDirectoryAlways: [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:25]: [exec] CopyFilesToOutputDirectory: [17:10:25]: [exec] Copying file from "obj\Debug\OurProject.Service.TestUtilities.dll" to "bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:25]: [exec] OurProject.Service.TestUtilities -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll [17:10:25]: [exec] Copying file from "obj\Debug\OurProject.Service.TestUtilities.pdb" to "bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:25]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\OurProject.Service.TestUtilities.csproj" (Rebuild target(s)). [17:10:25]: [exec] Rebuild: [17:10:25]: [exec] The project "OurProject.Service.Client" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:25]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\OurProject.Service.DataAccess.csproj" (13:3) on node 0 (Rebuild target(s)). [17:10:25]: [exec] Processing 0 EDMX files. [17:10:25]: [exec] Finished processing 0 EDMX files. [17:10:25]: [exec] _CopyFilesMarkedCopyLocal: [17:10:25]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:25]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:25]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:25]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:25]: [exec] CopyFilesToOutputDirectory: [17:10:25]: [exec] Copying file from "obj\Debug\OurProject.Service.DataAccess.dll" to "bin\Debug\OurProject.Service.DataAccess.dll". [17:10:25]: [exec] OurProject.Service.DataAccess -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll [17:10:25]: [exec] Copying file from "obj\Debug\OurProject.Service.DataAccess.pdb" to "bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:25]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\OurProject.Service.DataAccess.csproj" (Rebuild target(s)). [17:10:25]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\OurProject.Service.DataContracts.UnitTests.csproj" (14:2) on node 0 (Rebuild target(s)). [17:10:25]: [exec] Processing 0 EDMX files. [17:10:25]: [exec] Finished processing 0 EDMX files. [17:10:26]: [exec] _CopyFilesMarkedCopyLocal: [17:10:26]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll" to "bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:26]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:26]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.pdb" to "bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:26]: [exec] _CopyOutOfDateSourceItemsToOutputDirectoryAlways: [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:26]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:26]: [exec] CopyFilesToOutputDirectory: [17:10:26]: [exec] Copying file from "obj\Debug\OurProject.Service.DataContracts.UnitTests.dll" to "bin\Debug\OurProject.Service.DataContracts.UnitTests.dll". [17:10:26]: [exec] OurProject.Service.DataContracts.UnitTests -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll [17:10:26]: [exec] Copying file from "obj\Debug\OurProject.Service.DataContracts.UnitTests.pdb" to "bin\Debug\OurProject.Service.DataContracts.UnitTests.pdb". [17:10:26]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\OurProject.Service.DataContracts.UnitTests.csproj" (Rebuild target(s)). [17:10:26]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\OurProject.Service.ServiceProxy.UnitTests.csproj" (15:2) on node 0 (Rebuild target(s)). [17:10:26]: [exec] Processing 0 EDMX files. [17:10:26]: [exec] Finished processing 0 EDMX files. [17:10:27]: [exec] _CopyFilesMarkedCopyLocal: [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll" to "bin\Debug\dh.Common.PostSharp.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll" to "bin\Debug\OurProject.Service.ServiceProxy.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll" to "bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\PostSharp.Laos.dll" to "bin\Debug\PostSharp.Laos.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\PostSharp.Public.dll" to "bin\Debug\PostSharp.Public.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Rhino.Mocks.dll" to "bin\Debug\Rhino.Mocks.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:27]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.pdb" to "bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.pdb" to "bin\Debug\OurProject.Service.ServiceProxy.pdb". [17:10:27]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb" to "bin\Debug\dh.Common.PostSharp.pdb". [17:10:27]: [exec] PostSharp: [17:10:27]: [exec] PostSharp 1.0 [1.0.12.469] - Copyright (c) Gael Fraiteur, 2005-2008. [17:10:27]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:31]: [exec] info PS0035: PostSharp: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\PostSharp\OurProject.Service.ServiceProxy.UnitTests.il" /QUIET /DLL /PDB "/RESOURCE=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\PostSharp\OurProject.Service.ServiceProxy.UnitTests.res" "/OUTPUT=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\OurProject.Service.ServiceProxy.UnitTests.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=4194304 /STACK=1048576 /ALIGNMENT=512 /MDV=v2.0.50727 [17:10:32]: [exec] Touching C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\obj\Debug\OurProject.Service.ServiceProxy.UnitTests.dll.postsharp. [17:10:32]: [exec] _CopyOutOfDateSourceItemsToOutputDirectoryAlways: [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\system.serviceModel.behaviors.config" to "bin\Debug\system.serviceModel.behaviors.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\system.serviceModel.bindings.config" to "bin\Debug\system.serviceModel.bindings.config". [17:10:32]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\system.serviceModel.client.config" to "bin\Debug\system.serviceModel.client.config". [17:10:32]: [exec] _CopyAppConfigFile: [17:10:32]: [exec] Copying file from "app.config" to "bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll.config". [17:10:32]: [exec] CopyFilesToOutputDirectory: [17:10:32]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceProxy.UnitTests.dll" to "bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll". [17:10:32]: [exec] OurProject.Service.ServiceProxy.UnitTests -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll [17:10:32]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceProxy.UnitTests.pdb" to "bin\Debug\OurProject.Service.ServiceProxy.UnitTests.pdb". [17:10:32]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\OurProject.Service.ServiceProxy.UnitTests.csproj" (Rebuild target(s)). [17:10:32]: [exec] Rebuild: [17:10:32]: [exec] The project "BuildDependencies" is not selected for building in solution configuration "Debug|Mixed Platforms". [17:10:32]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\OurProject.Service.BusinessLogic.csproj" (16:3) on node 0 (Rebuild target(s)). [17:10:32]: [exec] Processing 0 EDMX files. [17:10:32]: [exec] Finished processing 0 EDMX files. [17:10:33]: [exec] _CopyFilesMarkedCopyLocal: [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:33]: [exec] CopyFilesToOutputDirectory: [17:10:33]: [exec] Copying file from "obj\Debug\OurProject.Service.BusinessLogic.dll" to "bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:33]: [exec] OurProject.Service.BusinessLogic -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll [17:10:33]: [exec] Copying file from "obj\Debug\OurProject.Service.BusinessLogic.pdb" to "bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:33]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\OurProject.Service.BusinessLogic.csproj" (Rebuild target(s)). [17:10:33]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\OurProject.Service.DataAccess.UnitTests.csproj" (17:2) on node 0 (Rebuild target(s)). [17:10:33]: [exec] Processing 0 EDMX files. [17:10:33]: [exec] Finished processing 0 EDMX files. [17:10:33]: [exec] _CopyFilesMarkedCopyLocal: [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll" to "bin\Debug\OurProject.Service.DataAccess.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll" to "bin\Debug\OurProject.Service.Interfaces.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll" to "bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\log4net.dll" to "bin\Debug\log4net.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:33]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.pdb" to "bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.pdb" to "bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.pdb" to "bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:33]: [exec] _CopyOutOfDateSourceItemsToOutputDirectoryAlways: [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:33]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:33]: [exec] _CopyAppConfigFile: [17:10:33]: [exec] Copying file from "app.config" to "bin\Debug\OurProject.Service.DataAccess.UnitTests.dll.config". [17:10:33]: [exec] CopyFilesToOutputDirectory: [17:10:33]: [exec] Copying file from "obj\Debug\OurProject.Service.DataAccess.UnitTests.dll" to "bin\Debug\OurProject.Service.DataAccess.UnitTests.dll". [17:10:33]: [exec] OurProject.Service.DataAccess.UnitTests -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll [17:10:33]: [exec] Copying file from "obj\Debug\OurProject.Service.DataAccess.UnitTests.pdb" to "bin\Debug\OurProject.Service.DataAccess.UnitTests.pdb". [17:10:33]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\OurProject.Service.DataAccess.UnitTests.csproj" (Rebuild target(s)). [17:10:33]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\OurProject.Service.ServiceImplementation.csproj" (18:3) on node 0 (Rebuild target(s)). [17:10:33]: [exec] Processing 0 EDMX files. [17:10:33]: [exec] Finished processing 0 EDMX files. [17:10:34]: [exec] _CopyFilesMarkedCopyLocal: [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll" to "bin\Debug\dh.Common.PostSharp.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll" to "bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll" to "bin\Debug\OurProject.Service.FaultContracts.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll" to "bin\Debug\OurProject.Service.Interfaces.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll" to "bin\Debug\OurProject.Service.MessageContracts.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll" to "bin\Debug\OurProject.Service.ServiceContracts.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\PostSharp.Laos.dll" to "bin\Debug\PostSharp.Laos.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\PostSharp.Public.dll" to "bin\Debug\PostSharp.Public.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:34]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.pdb" to "bin\Debug\OurProject.Service.FaultContracts.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.pdb" to "bin\Debug\OurProject.Service.MessageContracts.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.pdb" to "bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.pdb" to "bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.pdb" to "bin\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:34]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb" to "bin\Debug\dh.Common.PostSharp.pdb". [17:10:34]: [exec] PostSharp: [17:10:34]: [exec] PostSharp 1.0 [1.0.12.469] - Copyright (c) Gael Fraiteur, 2005-2008. [17:10:36]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:38]: [exec] info PS0035: PostSharp: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\PostSharp\OurProject.Service.ServiceImplementation.il" /QUIET /DLL /PDB "/RESOURCE=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\PostSharp\OurProject.Service.ServiceImplementation.res" "/OUTPUT=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\OurProject.Service.ServiceImplementation.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=4194304 /STACK=1048576 /ALIGNMENT=4096 /MDV=v2.0.50727 [17:10:39]: [exec] Touching C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\obj\Debug\OurProject.Service.ServiceImplementation.dll.postsharp. [17:10:39]: [exec] CopyFilesToOutputDirectory: [17:10:39]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceImplementation.dll" to "bin\Debug\OurProject.Service.ServiceImplementation.dll". [17:10:39]: [exec] OurProject.Service.ServiceImplementation -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.dll [17:10:39]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceImplementation.pdb" to "bin\Debug\OurProject.Service.ServiceImplementation.pdb". [17:10:39]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\OurProject.Service.ServiceImplementation.csproj" (Rebuild target(s)). [17:10:39]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProject.Service.BusinessLogic.UnitTests.csproj" (19:2) on node 0 (Rebuild target(s)). [17:10:39]: [exec] Processing 0 EDMX files. [17:10:39]: [exec] Finished processing 0 EDMX files. [17:10:40]: [exec] _CopyFilesMarkedCopyLocal: [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll" to "bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll" to "bin\Debug\OurProject.Service.DataAccess.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll" to "bin\Debug\OurProject.Service.Interfaces.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll" to "bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\log4net.dll" to "bin\Debug\log4net.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Rhino.Mocks.dll" to "bin\Debug\Rhino.Mocks.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:40]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.pdb" to "bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.pdb" to "bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.pdb" to "bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.pdb" to "bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:40]: [exec] _CopyOutOfDateSourceItemsToOutputDirectoryAlways: [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:40]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:40]: [exec] _CopyAppConfigFile: [17:10:40]: [exec] Copying file from "app.config" to "bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll.config". [17:10:40]: [exec] CopyFilesToOutputDirectory: [17:10:40]: [exec] Copying file from "obj\Debug\OurProject.Service.BusinessLogic.UnitTests.dll" to "bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll". [17:10:40]: [exec] OurProject.Service.BusinessLogic.UnitTests -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll [17:10:40]: [exec] Copying file from "obj\Debug\OurProject.Service.BusinessLogic.UnitTests.pdb" to "bin\Debug\OurProject.Service.BusinessLogic.UnitTests.pdb". [17:10:40]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProject.Service.BusinessLogic.UnitTests.csproj" (Rebuild target(s)). [17:10:40]: [exec] Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (1) is building "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\OurProject.Service.ServiceImplementation.UnitTests.csproj" (20:2) on node 0 (Rebuild target(s)). [17:10:40]: [exec] Processing 0 EDMX files. [17:10:40]: [exec] Finished processing 0 EDMX files. [17:10:41]: [exec] ResolveTestReferences: [17:10:41]: [exec] 'Test References\OurProject.Service.ServiceImplementation.accessor' file was processed [17:10:41]: [exec] _CopyFilesMarkedCopyLocal: [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.BS.dll" to "bin\Debug\dh.Common.BS.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\dh.Common.dll" to "bin\Debug\dh.Common.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll" to "bin\Debug\dh.Common.PostSharp.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "bin\Debug\OurProject.Service.BusinessEntities.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll" to "bin\Debug\OurProject.Service.BusinessLogic.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll" to "bin\Debug\OurProject.Service.DataAccess.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "bin\Debug\OurProject.Service.DataContracts.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll" to "bin\Debug\OurProject.Service.FaultContracts.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll" to "bin\Debug\OurProject.Service.Interfaces.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll" to "bin\Debug\OurProject.Service.MessageContracts.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll" to "bin\Debug\OurProject.Service.ServiceContracts.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.dll" to "bin\Debug\OurProject.Service.ServiceImplementation.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.dll" to "bin\Debug\OurProject.Service.TestUtilities.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\log4net.dll" to "bin\Debug\log4net.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll" to "bin\Debug\Microsoft.Practices.ObjectBuilder.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\PostSharp.Laos.dll" to "bin\Debug\PostSharp.Laos.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\PostSharp.Public.dll" to "bin\Debug\PostSharp.Public.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.dll" to "bin\Debug\OurProject.Service.Configuration.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\SpreadsheetGear.dll" to "bin\Debug\SpreadsheetGear.dll". [17:10:41]: [exec] Copying file from "..\..\..\..\..\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "bin\Debug\ICSharpCode.SharpZipLib.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "bin\Debug\OurProject.Service.BusinessEntities.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.TestUtilities\bin\Debug\OurProject.Service.TestUtilities.pdb" to "bin\Debug\OurProject.Service.TestUtilities.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.pdb" to "bin\Debug\OurProject.Service.ServiceImplementation.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.pdb" to "bin\Debug\OurProject.Service.FaultContracts.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "bin\Debug\OurProject.Service.DataContracts.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.pdb" to "bin\Debug\OurProject.Service.MessageContracts.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.pdb" to "bin\Debug\OurProject.Service.Configuration.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.pdb" to "bin\Debug\OurProject.Service.Interfaces.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.pdb" to "bin\Debug\OurProject.Service.BusinessLogic.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.pdb" to "bin\Debug\OurProject.Service.DataAccess.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.pdb" to "bin\Debug\OurProject.Service.ServiceContracts.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb" to "bin\Debug\dh.Common.PostSharp.pdb". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\OurProject.Service.ServiceImplementation_Accessor.dll" to "bin\Debug\OurProject.Service.ServiceImplementation_Accessor.dll". [17:10:41]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\OurProject.Service.ServiceImplementation_Accessor.pdb" to "bin\Debug\OurProject.Service.ServiceImplementation_Accessor.pdb". [17:10:42]: [exec] PostSharp: [17:10:42]: [exec] PostSharp 1.0 [1.0.12.469] - Copyright (c) Gael Fraiteur, 2005-2008. [17:10:43]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:45]: [exec] info PS0035: PostSharp: c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\PostSharp\OurProject.Service.ServiceImplementation.UnitTests.il" /QUIET /DLL /PDB "/RESOURCE=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\PostSharp\OurProject.Service.ServiceImplementation.UnitTests.res" "/OUTPUT=C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=4194304 /STACK=1048576 /ALIGNMENT=512 /MDV=v2.0.50727 [17:10:45]: [exec] Touching C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\obj\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll.postsharp. [17:10:45]: [exec] _CopyOutOfDateSourceItemsToOutputDirectoryAlways: [17:10:45]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:45]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:45]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:45]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config" to "bin\Debug\cacheblock.config". [17:10:45]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config" to "bin\Debug\log4net.config". [17:10:45]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config" to "bin\Debug\unittest_connections.config". [17:10:45]: [exec] _CopyAppConfigFile: [17:10:45]: [exec] Copying file from "app.config" to "bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll.config". [17:10:45]: [exec] CopyFilesToOutputDirectory: [17:10:45]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll" to "bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll". [17:10:45]: [exec] OurProject.Service.ServiceImplementation.UnitTests -> C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll [17:10:45]: [exec] Copying file from "obj\Debug\OurProject.Service.ServiceImplementation.UnitTests.pdb" to "bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.pdb". [17:10:45]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\OurProject.Service.ServiceImplementation.UnitTests.csproj" (Rebuild target(s)). [17:10:49]: [exec] dh_OurProject_Service_Host:Rebuild: [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessEntities.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\dh.Common.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.dll". [17:10:49]: [exec] Copying file from "C:\WINDOWS\assembly\GAC_32\Oracle.DataAccess\2.102.2.20__89b483f429c47342\Oracle.DataAccess.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Oracle.DataAccess.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\ICSharpCode.SharpZipLib.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\ICSharpCode.SharpZipLib.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.DataContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessEntities.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.DataContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessLogic.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\dh.Common.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.DataContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.dll". [17:10:49]: [exec] Copying file from "C:\WINDOWS\assembly\GAC_32\Oracle.DataAccess\2.102.2.20__89b483f429c47342\Oracle.DataAccess.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Oracle.DataAccess.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\dh.Common.BS.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.BS.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.ObjectBuilder.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Microsoft.Practices.ObjectBuilder.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\SpreadsheetGear.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\SpreadsheetGear.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\ICSharpCode.SharpZipLib.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\ICSharpCode.SharpZipLib.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.DataContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessLogic.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.DataContracts\bin\Debug\OurProject.Service.DataContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.FaultContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.FaultContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.MessageContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.MessageContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.ServiceContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.ServiceContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataAccess.dll". [17:10:49]: [exec] Copying file from "C:\WINDOWS\assembly\GAC_32\Oracle.DataAccess\2.102.2.20__89b483f429c47342\Oracle.DataAccess.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Oracle.DataAccess.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\ICSharpCode.SharpZipLib.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\ICSharpCode.SharpZipLib.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\dh.Common.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.Configuration.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataAccess.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.Configuration.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Interfaces.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.DataContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.DataContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Interfaces.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.ServiceImplementation.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessEntities.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessEntities.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.BS.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.BS.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.DataContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.dll". [17:10:49]: [exec] Copying file from "C:\WINDOWS\assembly\GAC_32\Oracle.DataAccess\2.102.2.20__89b483f429c47342\Oracle.DataAccess.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Oracle.DataAccess.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.MessageContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.MessageContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.Configuration.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceContracts.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.ServiceContracts.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Microsoft.Practices.EnterpriseLibrary.Common.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessLogic.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessLogic.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\PostSharp.Laos.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\PostSharp.Laos.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.Interfaces.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Interfaces.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\Microsoft.Practices.ObjectBuilder.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Microsoft.Practices.ObjectBuilder.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\SpreadsheetGear.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\SpreadsheetGear.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\ICSharpCode.SharpZipLib.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\ICSharpCode.SharpZipLib.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\PostSharp.Public.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\PostSharp.Public.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.PostSharp.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.PostSharp.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessEntities.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessEntities.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.ServiceImplementation.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.DataContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.DataContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.MessageContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.MessageContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.Configuration.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceContracts.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.ServiceContracts.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.BusinessLogic.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.BusinessLogic.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.Interfaces.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Interfaces.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.PostSharp.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.PostSharp.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.PostSharp.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\PostSharp.Laos.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\PostSharp.Laos.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\PostSharp.Public.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\PostSharp.Public.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\dh.Common.PostSharp.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Configuration\bin\Debug\OurProject.Service.Configuration.pdb" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\OurProject.Service.Configuration.pdb". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\ICSharpCode.SharpZipLib.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\ICSharpCode.SharpZipLib.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Interop.ActiveDs.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\Interop.ActiveDs.dll". [17:10:49]: [exec] Copying file from "C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.dll" to "OurProject\OurProject.Service\Tests\OurProject.Service.Host\\Bin\log4net.dll". [17:10:54]: [exec] Done Building Project "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target(s)). [17:10:54]: [exec] Build succeeded. [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] (Clean target) -> [17:10:54]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] (dh_OurProject:Clean target) -> [17:10:54]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] (dh_OurProject_DB\dh_OurProject_DB:Clean target) -> [17:10:54]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject.DB" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\dh.Common.PostSharp.csproj" (Rebuild target) (2:3) -> [17:10:54]: [exec] (PostSharp target) -> [17:10:54]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] (Rebuild target) -> [17:10:54]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] (dh_OurProject:Rebuild target) -> [17:10:54]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] (dh_OurProject_DB\dh_OurProject_DB:Rebuild target) -> [17:10:54]: [exec] C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln : warning MSB4121: The project configuration for project "OurProject.DB" was not specified in the solution file for the solution configuration "Debug|Mixed Platforms". [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\OurProject.Service.ServiceProxy.csproj" (Rebuild target) (8:2) -> [17:10:54]: [exec] (PostSharp target) -> [17:10:54]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.Web\OurProject.csproj" (Rebuild target) (9:2) -> [17:10:54]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\OurProject.Service.ServiceProxy.UnitTests.csproj" (Rebuild target) (15:2) -> [17:10:54]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\OurProject.Service.ServiceImplementation.csproj" (Rebuild target) (18:3) -> [17:10:54]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject.sln" (Clean;Rebuild target) (1) -> [17:10:54]: [exec] "C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\OurProject.Service.ServiceImplementation.UnitTests.csproj" (Rebuild target) (20:2) -> [17:10:54]: [exec] unknown_location : postsharp warning PS0064: PostSharp: A new version of PostSharp 1.0 is available. You have currently 1.0.12.469 and you could download the version 1.0.13.630 from http://www.postsharp.org/download. [17:10:54]: [exec] 12 Warning(s) [17:10:54]: [exec] 0 Error(s) [17:10:54]: [exec] Time Elapsed 00:00:52.11 [17:10:54]: [debug.buildsolution] if [17:10:54]: [buildsolution] if [17:10:54]: [buildsolution] if [17:10:54]: [buildsolution] if [17:10:54]: [buildsolution] Compilation successful. [17:10:54]: copybuildresults [17:10:54]: [copybuildresults] ##### COPYING BUILD RESULTS ... ##### [17:10:54]: [copybuildresults] \OurProject [17:10:54]: [copybuildresults] copy [17:11:02]: [copybuildresults] Copying 40 files to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\DeploymentScripts\dh.DeploymentTool\dh.DeploymentTool\bin\Debug\dh.DeploymentTool.vshost.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.DeploymentTool.vshost.exe'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\IISManager\IISManagerConsole\bin\Debug\IISManagerConsole.vshost.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\IISManagerConsole.vshost.exe'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.DataAccess.UnitTests.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.ServiceContracts.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\dh.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.Common.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.DataAccess.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\dh.NAnt.CustomTasks\dh.NAnt.CustomTasks\bin\Debug\dh.NAnt.CustomTasks.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.NAnt.CustomTasks.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\DeploymentScripts\dh.DeploymentTool\dh.DeploymentTool\bin\Debug\dh.DeploymentTool.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.DeploymentTool.exe'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation_Accessor.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.ServiceImplementation_Accessor.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.Configuration.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.ObjectBuilder.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\Microsoft.Practices.ObjectBuilder.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\RegisterCustomCulture\RegisterCustomCulture\bin\Debug\RegisterCustomCulture.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\RegisterCustomCulture.exe'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\DeploymentScripts\dh.DeploymentTool\dh.DeploymentTool\bin\Debug\dh.DeploymentTool.Core.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.DeploymentTool.Core.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\SpreadsheetGear.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\SpreadsheetGear.dll'. [17:11:02]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\dh.NAnt.CustomTasks\dh.NAnt.CustomTasks\bin\Debug\log4net.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\log4net.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\Microsoft.Practices.EnterpriseLibrary.Common.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.TestUtilities.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\ICSharpCode.SharpZipLib.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\ICSharpCode.SharpZipLib.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.BusinessLogic.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\RegisterCustomCulture\RegisterCustomCulture\bin\Debug\RegisterCustomCulture.vshost.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\RegisterCustomCulture.vshost.exe'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\PostSharp.Public.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\PostSharp.Public.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.DataContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.DataContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.ServiceImplementation.UnitTests.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.BusinessLogic.UnitTests.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.MessageContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.ServiceImplementation.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.ServiceProxy.UnitTests.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\dh.Common.BS.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.Common.BS.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.FaultContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\dh.Common.PostSharp.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\dh.Common.PostSharp.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.BusinessEntities.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.DataContracts.UnitTests.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\dh.NAnt.CustomTasks\dh.NAnt.CustomTasks\bin\Debug\Interop.SourceSafeTypeLib.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\Interop.SourceSafeTypeLib.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.ServiceProxy.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\dh.NAnt.CustomTasks\dh.NAnt.CustomTasks\bin\Debug\NAnt.Core.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\NAnt.Core.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\dh.Common.PostSharp\bin\Debug\PostSharp.Laos.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\PostSharp.Laos.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\OurProject.Service.Interfaces.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\Rhino.Mocks.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\Rhino.Mocks.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\Utilities\IISManager\IISManagerConsole\bin\Debug\IISManagerConsole.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\bin\IISManagerConsole.exe'. [17:11:03]: [copybuildresults] if [17:11:03]: [copybuildresults] copy [17:11:03]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host'. [17:11:03]: [copybuildresults] Copying 48 files to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.Configuration.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.Configuration.dll'. [17:11:03]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\cacheblock.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\cacheblock.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\SecurityService.svc' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\SecurityService.svc'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.MessageContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.MessageContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\Microsoft.Practices.EnterpriseLibrary.Caching.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\dh.Common.PostSharp.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\dh.Common.PostSharp.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\PostSharp.Laos.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\PostSharp.Laos.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.FaultContracts.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.FaultContracts.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\GrouperService.svc' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\GrouperService.svc'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.ServiceImplementation.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.ServiceImplementation.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.DataContracts.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.DataContracts.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\Interop.ActiveDs.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\Interop.ActiveDs.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\connections.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\connections.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.OracleDataAccess.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.OracleDataAccess.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\PostSharp.Public.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\PostSharp.Public.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\web.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\web.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\Oracle.DataAccess.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\Oracle.DataAccess.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\ICSharpCode.SharpZipLib.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\ICSharpCode.SharpZipLib.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\SpreadsheetGear.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\SpreadsheetGear.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.Configuration.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.Configuration.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\OurProjecteviewService.svc' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\OurProjecteviewService.svc'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\Microsoft.Practices.ObjectBuilder.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\Microsoft.Practices.ObjectBuilder.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.DataAccess.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.DataAccess.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\log4net.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\log4net.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.ServiceContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.ServiceContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.BusinessEntities.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.BusinessEntities.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\authentication.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\authentication.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.DataContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.DataContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.ServiceContracts.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.ServiceContracts.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\PrecompiledApp.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\PrecompiledApp.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.DataAccess.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.DataAccess.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\identity.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\identity.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.Interfaces.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.Interfaces.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\dh.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\dh.Common.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.BusinessLogic.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.BusinessLogic.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.ServiceImplementation.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.ServiceImplementation.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\ObjectivesService.svc' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\ObjectivesService.svc'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\Microsoft.Practices.EnterpriseLibrary.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\Microsoft.Practices.EnterpriseLibrary.Common.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.FaultContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.FaultContracts.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.BusinessLogic.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.BusinessLogic.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\vwd.webinfo' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\vwd.webinfo'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\log4net.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\log4net.config'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.OracleDataAccess.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.OracleDataAccess.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.MessageContracts.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.MessageContracts.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\dh.Common.PostSharp.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\dh.Common.PostSharp.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.Interfaces.pdb' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.Interfaces.pdb'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\OurProject.Service.BusinessEntities.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\OurProject.Service.BusinessEntities.dll'. [17:11:03]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\PrecompiledWeb\OurProject.Service.Host\bin\dh.Common.BS.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\outputs\web\OurProject.Service.Host\bin\dh.Common.BS.dll'. [17:11:03]: [copybuildresults] if [17:11:03]: [copybuildresults] property [17:11:03]: [copybuildresults] copy [17:11:04]: [copybuildresults] copy [17:11:05]: [copybuildresults] Copying 37 files to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\Product Review MetaData.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\Product Review MetaData.sql'. [17:11:05]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Packages\Objectives Package.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\Objectives Package.sql'. [17:11:05]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\OurProjectDB.xml' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\OurProjectDB.xml'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Drop Range Review Sequences.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Drop Range Review Sequences.sql'. [17:11:05]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Packages\Range Review Package.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\Range Review Package.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\BUILD_RESOURCES.BAT' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\BUILD_RESOURCES.BAT'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Packages\OurProject Common Package.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\OurProject Common Package.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\TescoUK_OurProjectDB.xml' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\TescoUK_OurProjectDB.xml'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Drop Report Data Import Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Drop Report Data Import Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Drop Range Review Synonyms.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Drop Range Review Synonyms.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\BUILD_DATABASE.BAT' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\BUILD_DATABASE.BAT'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\Group Test Data.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\Group Test Data.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Range Grouper Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Range Grouper Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\LoadData.bat' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\LoadData.bat'. [17:11:05]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Range Review Sequences.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Range Review Sequences.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\disable.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\disable.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Packages\Drop Packages.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\Drop Packages.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\MetaDataLoadDev.bat' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\MetaDataLoadDev.bat'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Drop Range Grouper Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Drop Range Grouper Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Range Review Synonyms.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Range Review Synonyms.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject.DB.dbp' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject.DB.dbp'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Drop Range Review Views.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Drop Range Review Views.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\Product MetaData Insert SQL.xls' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\Product MetaData Insert SQL.xls'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Range Review Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Range Review Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\BUILD_PACKAGES.BAT' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\BUILD_PACKAGES.BAT'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Packages\Common\PackageStatus.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\Common\PackageStatus.sql'. [17:11:05]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\Common'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Report Data Import Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Report Data Import Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Range Review Views.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Range Review Views.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\Insert MDPA data.csv' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\Insert MDPA data.csv'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Temp Import Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Temp Import Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\Drop Range Review Tables.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\Drop Range Review Tables.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Packages\Grouper Package.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Packages\Grouper Package.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\Range Review Test Data.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\Range Review Test Data.sql'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\OurProject_mdpa.ctl' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\OurProject_mdpa.ctl'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\TescoUK_OurProjectDBParams.xml' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\TescoUK_OurProjectDBParams.xml'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\Create Scripts\PURGE_RECYCLEBIN.SQL' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\Create Scripts\PURGE_RECYCLEBIN.SQL'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\enable.sql' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\OurProject.DB\OurProject\StaticData\TescoUK\CSVData\enable.sql'. [17:11:05]: [copybuildresults] copy [17:11:05]: [copybuildresults] Copying 27 files to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\SharedAssemblyInfo.cs' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\SharedAssemblyInfo.cs'. [17:11:05]: [copybuildresults] Created directory 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\BuildDependencies.csproj' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\BuildDependencies.csproj'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Caching.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\SMDiagnostics.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\SMDiagnostics.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Interop.ActiveDs.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\Interop.ActiveDs.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\dh.Common.Excel.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\dh.Common.Excel.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\Microsoft.Practices.ObjectBuilder.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\weborb.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\weborb.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\dh.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\dh.Common.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\ICSharpCode.SharpZipLib.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\ICSharpCode.SharpZipLib.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\log4net.config'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\DHBuildDatabase.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\DHBuildDatabase.exe'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Rhino.Mocks.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\Rhino.Mocks.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\dh.Common.BS.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\dh.Common.BS.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\log4net.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\log4net.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\cacheblock.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\cacheblock.config'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\SpreadsheetGear.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\SpreadsheetGear.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\Microsoft.Practices.EnterpriseLibrary.Common.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\unittest_connections.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\unittest_connections.config'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\PostSharp.Laos.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\PostSharp.Laos.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\Oracle.DataAccess.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\Oracle.DataAccess.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\TestTester.cs' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\TestTester.cs'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\dh.Common.UIC.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\dh.Common.UIC.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\DHFileSubst.exe' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\DHFileSubst.exe'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\connections.config' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\connections.config'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\PostSharp.Public.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\PostSharp.Public.dll'. [17:11:05]: [copybuildresults] Copying 'C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies\nunit.framework.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\db\source\BuildDependencies\nunit.framework.dll'. [17:11:05]: [copybuildresults] Build results copied successfully. [17:11:05]: codeanalyze [17:11:05]: [codeanalyze] ##### RUNNING FXCOP CODE ANALYSIS ... ##### [17:11:05]: [codeanalyze] copy [17:11:06]: [codeanalyze] Copying 30 files to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\Rhino.Mocks.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\Rhino.Mocks.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.TestUtilities.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.TestUtilities.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.Configuration.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.Configuration.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation_Accessor.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation_Accessor.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceProxy.UnitTests.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\dh.Common.BS.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\dh.Common.BS.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.DataContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataContracts.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.FaultContracts\bin\Debug\OurProject.Service.FaultContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.FaultContracts.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.Interfaces\bin\Debug\OurProject.Service.Interfaces.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.Interfaces.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\OurProject.Service.BusinessLogic.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessLogic.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Resource Access\OurProject.Service.DataAccess\bin\Debug\OurProject.Service.DataAccess.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataAccess.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.MessageContracts\bin\Debug\OurProject.Service.MessageContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.MessageContracts.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessLogic.UnitTests.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Caching.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\Microsoft.Practices.EnterpriseLibrary.Caching.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\dh.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\dh.Common.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.EnterpriseLibrary.Common.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\Microsoft.Practices.EnterpriseLibrary.Common.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\log4net.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\log4net.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\PostSharp.Public.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\PostSharp.Public.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\Microsoft.Practices.ObjectBuilder.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\Microsoft.Practices.ObjectBuilder.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataAccess.UnitTests.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\OurProject.Service.BusinessEntities.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessEntities.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataContracts.UnitTests.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceContracts\bin\Debug\OurProject.Service.ServiceContracts.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceContracts.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessEntities\bin\Debug\ICSharpCode.SharpZipLib.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\ICSharpCode.SharpZipLib.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\OurProject.Service.ServiceImplementation.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\OurProject.Service.ServiceProxy\bin\Debug\OurProject.Service.ServiceProxy.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceProxy.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Business Logic\OurProject.Service.BusinessLogic\bin\Debug\SpreadsheetGear.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\SpreadsheetGear.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation.UnitTests.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\PostSharp.Laos.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\PostSharp.Laos.dll'. [17:11:06]: [codeanalyze] Copying 'C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Source\Service Interface\OurProject.Service.ServiceImplementation\bin\Debug\dh.Common.PostSharp.dll' to 'C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\dh.Common.PostSharp.dll'. [17:11:06]: [codeanalyze] setenv [17:11:06]: [setenv] Setting environment variable "PATH" to "%PATH%;BuildScripts\Tools\FxCop1.35". [17:11:06]: [codeanalyze] fxcop [17:11:06]: [fxcop] Working directory: C:\BuildAgent\work\427aac12d86a3c69 [17:11:06]: [fxcop] Arguments: /d:"C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessEntities.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessLogic.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessLogic.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.Configuration.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataAccess.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataAccess.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataContracts.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.FaultContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.Interfaces.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.MessageContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation_Accessor.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceProxy.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceProxy.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.TestUtilities.dll" /o:"Output\CI\OurProject\reports\fxcop\FxCopReport.xml" /p:"BuildScripts\dh.fxcopcodestandards.fxcop" /s [17:11:06]: [fxcop] Starting 'fxcopcmd.exe (/d:"C:\BuildAgent\work\427aac12d86a3c69\BuildDependencies" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessEntities.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessLogic.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.BusinessLogic.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.Configuration.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataAccess.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataAccess.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.DataContracts.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.FaultContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.Interfaces.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.MessageContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceContracts.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceImplementation_Accessor.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceProxy.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.ServiceProxy.UnitTests.dll" /f:"C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\OurProject.Service.TestUtilities.dll" /o:"Output\CI\OurProject\reports\fxcop\FxCopReport.xml" /p:"BuildScripts\dh.fxcopcodestandards.fxcop" /s /searchgac)' in 'C:\BuildAgent\work\427aac12d86a3c69' [17:11:06]: [fxcop] Microsoft FxCopCmd v1.35.60623.0 [17:11:06]: [fxcop] Copyright (C) 1999-2006 Microsoft Corp. All rights reserved. [17:11:06]: [fxcop] Loading BuildScripts\dh.fxcopcodestandards.fxcop... [17:11:07]: [fxcop] Loaded DesignRules.dll... [17:11:07]: [fxcop] Loaded GlobalizationRules.dll... [17:11:07]: [fxcop] Loaded InteroperabilityRules.dll... [17:11:07]: [fxcop] Loaded MobilityRules.dll... [17:11:07]: [fxcop] Loaded NamingRules.dll... [17:11:07]: [fxcop] Loaded PerformanceRules.dll... [17:11:07]: [fxcop] Loaded PortabilityRules.dll... [17:11:07]: [fxcop] Loaded SecurityRules.dll... [17:11:07]: [fxcop] Loaded UsageRules.dll... [17:11:07]: [fxcop] Loaded OurProject.Service.BusinessEntities.dll... [17:11:07]: [fxcop] Loaded OurProject.Service.BusinessLogic.dll... [17:11:07]: [fxcop] Loaded OurProject.Service.BusinessLogic.UnitTests.dll... [17:11:07]: [fxcop] Loaded OurProject.Service.Configuration.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.DataAccess.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.DataAccess.UnitTests.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.DataContracts.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.DataContracts.UnitTests.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.FaultContracts.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.Interfaces.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.MessageContracts.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.ServiceContracts.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.ServiceImplementation.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.ServiceImplementation.UnitTests.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.ServiceImplementation_Accessor.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.ServiceProxy.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.ServiceProxy.UnitTests.dll... [17:11:08]: [fxcop] Loaded OurProject.Service.TestUtilities.dll... [17:11:08]: [fxcop] Initializing Introspection engine... [17:11:09]: [fxcop] Analyzing... [17:11:15]: [fxcop] Analysis Complete. [17:11:15]: [fxcop] Writing 470 messages... [17:11:15]: [fxcop] Writing report to C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\fxcop\FxCopReport.xml... [17:11:15]: [fxcop] Analysis Summary: [17:11:15]: [fxcop] Messages : 470 (470 new) [17:11:15]: [fxcop] Running Time: 00:00:06.8282124 [17:11:15]: [fxcop] Done. [17:11:15]: [codeanalyze] ##teamcity[importData type='FxCop' path='Output\CI\OurProject\reports\fxcop\FxCopReport.xml'] [17:11:15]: [codeanalyze] Code analysis completed successfully. There may be code analysis errors. Check the report for details. [17:11:15]: rununittests [17:11:15]: [rununittests] if [17:11:15]: [rununittests] if [17:11:15]: [rununittests] call [17:11:15]: [call] Build sequence for target `runmstests' is runmstests [17:11:15]: [call] Complete build sequence is runmstests, prebuild, postbuild, validatebuildproperties, initializebuildtypesettings, clean, getversion, updateassemblyversion, setupdatabase, buildflexcomponents, buildsolution, restoreversionfiles, copybuildresults, codeanalyze, sourcemonitoranalyze, createndocdocumentation, rununittests, builddrop, build, run.build, createBuildDirectories, builddatabase, findinvalidobjects, dropdatabase, debug.buildsolution, release.buildsolution, gathermstestcontainers, runnunittests, watin, passbuild [17:11:15]: [call] runmstests [17:11:15]: [runmstests] ##### RUNNING MSTESTS WITH CODE COVERAGE ... ##### [17:11:15]: [runmstests] property [17:11:15]: [runmstests] if [17:11:15]: [runmstests] call [17:11:15]: [call] Build sequence for target `gathermstestcontainers' is gathermstestcontainers [17:11:15]: [call] Complete build sequence is gathermstestcontainers, prebuild, postbuild, validatebuildproperties, initializebuildtypesettings, clean, getversion, updateassemblyversion, setupdatabase, buildflexcomponents, buildsolution, restoreversionfiles, copybuildresults, codeanalyze, sourcemonitoranalyze, createndocdocumentation, rununittests, builddrop, build, run.build, createBuildDirectories, builddatabase, findinvalidobjects, dropdatabase, debug.buildsolution, release.buildsolution, runmstests, runnunittests, watin, passbuild [17:11:15]: [call] gathermstestcontainers [17:11:15]: [gathermstestcontainers] Use a fileset to discover all unit test assemblies [17:11:15]: [gathermstestcontainers] property [17:11:15]: [gathermstestcontainers] foreach [17:11:15]: [foreach] Appending unit test assembly /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll" [17:11:15]: [foreach] if [17:11:15]: [foreach] property [17:11:15]: [foreach] if [17:11:15]: [foreach] Appending unit test assembly /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll" [17:11:15]: [foreach] if [17:11:15]: [foreach] property [17:11:15]: [foreach] if [17:11:15]: [foreach] Appending unit test assembly /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll" [17:11:15]: [foreach] if [17:11:15]: [foreach] property [17:11:15]: [foreach] if [17:11:15]: [foreach] Appending unit test assembly /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll" [17:11:15]: [foreach] if [17:11:15]: [foreach] property [17:11:15]: [foreach] if [17:11:15]: [foreach] Appending unit test assembly /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll" [17:11:15]: [foreach] if [17:11:15]: [foreach] property [17:11:15]: [foreach] if [17:11:15]: [gathermstestcontainers] Current mstest.testcontainers value is /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll" [17:11:15]: [runmstests] if [17:11:15]: [runmstests] if [17:11:15]: [runmstests] property [17:11:15]: [runmstests] if [17:11:15]: [runmstests] if [17:11:15]: [runmstests] if [17:11:15]: [runmstests] if [17:11:16]: [runmstests] MSTest Arguments: /nologo /resultsfile:Output\CI\OurProject\reports\unittests\mstest-results.trx /detail:computername /detail:name /detail:description /detail:duration /detail:errormessage /detail:errorstacktrace /detail:testname /detail:testtype /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll" [17:11:16]: [runmstests] exec [17:11:16]: [exec] Starting 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\MSTest.exe (/nologo /resultsfile:Output\CI\OurProject\reports\unittests\mstest-results.trx /detail:computername /detail:name /detail:description /detail:duration /detail:errormessage /detail:errorstacktrace /detail:testname /detail:testtype /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll" /testcontainer:"C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll" )' in 'C:\BuildAgent\work\427aac12d86a3c69' [17:11:16]: Importing data from 'Output\CI\OurProject\reports\fxcop\FxCopReport.xml' with 'FxCop' processor [17:11:16]: [exec] Loading C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Integration Tests\OurProject.Service.DataAccess.UnitTests\bin\Debug\OurProject.Service.DataAccess.UnitTests.dll... [17:11:17]: [exec] Loading C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\bin\Debug\OurProject.Service.BusinessLogic.UnitTests.dll... [17:11:18]: [exec] Loading C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.DataContracts.UnitTests\bin\Debug\OurProject.Service.DataContracts.UnitTests.dll... [17:11:18]: [exec] Loading C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceImplementation.UnitTests\bin\Debug\OurProject.Service.ServiceImplementation.UnitTests.dll... [17:11:18]: [exec] Loading C:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.ServiceProxy.UnitTests\bin\Debug\OurProject.Service.ServiceProxy.UnitTests.dll... [17:11:19]: [exec] Starting execution... [17:11:40]: [exec] Results Top Level Tests [17:11:40]: [exec] ------- --------------- [17:11:40]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetProductGroupsTest [17:11:40]: [exec] [testtype] = Unit Test [17:11:40]: [exec] [computername] = DUK1VSR0249 [17:11:40]: [exec] [testname] = GetProductGroupsTest [17:11:40]: [exec] [duration] = 00:00:13.5455657 [17:11:51]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetProductTreeNodesTest [17:11:51]: [exec] [testtype] = Unit Test [17:11:51]: [exec] [computername] = DUK1VSR0249 [17:11:51]: [exec] [testname] = GetProductTreeNodesTest [17:11:51]: [exec] [duration] = 00:00:10.7429254 [17:11:59]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetRejectedProductTreeNodesTest [17:11:59]: [exec] [testtype] = Unit Test [17:11:59]: [exec] [computername] = DUK1VSR0249 [17:11:59]: [exec] [testname] = GetRejectedProductTreeNodesTest [17:11:59]: [exec] [duration] = 00:00:08.2834857 [17:12:12]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesTest [17:12:12]: [exec] [testtype] = Unit Test [17:12:12]: [exec] [computername] = DUK1VSR0249 [17:12:12]: [exec] [testname] = GetSubstitutesTest [17:12:12]: [exec] [duration] = 00:00:12.9171875 [17:12:22]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithNullProductCodeThrowsArgumentNullException [17:12:22]: [exec] [testtype] = Unit Test [17:12:22]: [exec] [computername] = DUK1VSR0249 [17:12:22]: [exec] [testname] = GetSubstitutesWithNullProductCodeThrowsArgumentNullException [17:12:22]: [exec] [duration] = 00:00:09.7935352 [17:12:31]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithOurProjecteviewInstanceIdLessThanOneThrowsArgumentOutOfRangeException [17:12:31]: [exec] [testtype] = Unit Test [17:12:31]: [exec] [computername] = DUK1VSR0249 [17:12:31]: [exec] [testname] = GetSubstitutesWithOurProjecteviewInstanceIdLessThanOneThrowsArgumentOutOfRangeException [17:12:31]: [exec] [duration] = 00:00:08.6750464 [17:12:40]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithUserIdLessThanOneThrowsArgumentOutOfRangeException [17:12:40]: [exec] [testtype] = Unit Test [17:12:40]: [exec] [computername] = DUK1VSR0249 [17:12:40]: [exec] [testname] = GetSubstitutesWithUserIdLessThanOneThrowsArgumentOutOfRangeException [17:12:40]: [exec] [duration] = 00:00:09.0841590 [17:12:48]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetTreeClusterDataTest [17:12:48]: [exec] [testtype] = Unit Test [17:12:48]: [exec] [computername] = DUK1VSR0249 [17:12:48]: [exec] [testname] = GetTreeClusterDataTest [17:12:48]: [exec] [duration] = 00:00:08.1796988 [17:12:57]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.SaveNewProductsForLevel1GroupTest [17:12:57]: [exec] [testtype] = Unit Test [17:12:57]: [exec] [computername] = DUK1VSR0249 [17:12:57]: [exec] [testname] = SaveNewProductsForLevel1GroupTest [17:12:57]: [exec] [duration] = 00:00:08.7374294 [17:13:05]: [exec] Passed OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.SaveProductGroupsTest [17:13:05]: [exec] [testtype] = Unit Test [17:13:05]: [exec] [computername] = DUK1VSR0249 [17:13:05]: [exec] [testname] = SaveProductGroupsTest [17:13:05]: [exec] [duration] = 00:00:08.0841011 [17:13:05]: [exec] Passed OurProject.Service.DataAccess.UnitTests.JobRepositoryTest.GetJobsForUserTest [17:13:05]: [exec] [testtype] = Unit Test [17:13:05]: [exec] [computername] = DUK1VSR0249 [17:13:05]: [exec] [testname] = GetJobsForUserTest [17:13:05]: [exec] [duration] = 00:00:00.4543881 [17:13:15]: [exec] Passed OurProject.Service.DataAccess.UnitTests.ObjectivesRepositoryTest.GetCompositeScoreDataTest [17:13:15]: [exec] [testtype] = Unit Test [17:13:15]: [exec] [computername] = DUK1VSR0249 [17:13:15]: [exec] [testname] = GetCompositeScoreDataTest [17:13:15]: [exec] [duration] = 00:00:09.3648318 [17:13:15]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetAllMetaDataTest [17:13:15]: [exec] [testtype] = Unit Test [17:13:15]: [exec] [computername] = DUK1VSR0249 [17:13:15]: [exec] [testname] = GetAllMetaDataTest [17:13:15]: [exec] [duration] = 00:00:00.0548916 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetInstanceProductDataTest [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetInstanceProductDataTest [17:13:23]: [exec] [duration] = 00:00:07.9842371 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetInstanceProductDataWithIdLessThanOneThrowsArgumentOutOfRangeExceptionTest [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetInstanceProductDataWithIdLessThanOneThrowsArgumentOutOfRangeExceptionTest [17:13:23]: [exec] [duration] = 00:00:00.0022921 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewEventsTest [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetOurProjecteviewEventsTest [17:13:23]: [exec] [duration] = 00:00:00.0730581 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewInstanceTest [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetOurProjecteviewInstanceTest [17:13:23]: [exec] [duration] = 00:00:00.0145892 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewInstanceWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetOurProjecteviewInstanceWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:13:23]: [exec] [duration] = 00:00:00.0030844 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetOurProjecteviewWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:13:23]: [exec] [duration] = 00:00:00.0039287 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewWithInstanceTest [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = GetOurProjecteviewWithInstanceTest [17:13:23]: [exec] [duration] = 00:00:00.0434910 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveEventWithExistingIdUpdatesEventAndReturnsInstances [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = SaveEventWithExistingIdUpdatesEventAndReturnsInstances [17:13:23]: [exec] [duration] = 00:00:00.0379679 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveEventWithNonExisitantIdInsertsEvent [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = SaveEventWithNonExisitantIdInsertsEvent [17:13:23]: [exec] [duration] = 00:00:00.0144012 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveInstanceWithExistingIdUpdatesInstance [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = SaveInstanceWithExistingIdUpdatesInstance [17:13:23]: [exec] [duration] = 00:00:00.0253887 [17:13:23]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveInstanceWithNonExisitantIdInsertsInstance [17:13:23]: [exec] [testtype] = Unit Test [17:13:23]: [exec] [computername] = DUK1VSR0249 [17:13:23]: [exec] [testname] = SaveInstanceWithNonExisitantIdInsertsInstance [17:13:23]: [exec] [duration] = 00:00:00.0165216 [17:13:31]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveMetaDataTest [17:13:31]: [exec] [testtype] = Unit Test [17:13:31]: [exec] [computername] = DUK1VSR0249 [17:13:31]: [exec] [testname] = SaveMetaDataTest [17:13:31]: [exec] [duration] = 00:00:07.9642611 [17:13:44]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveNewMetaAndProductDataTest [17:13:44]: [exec] [testtype] = Unit Test [17:13:44]: [exec] [computername] = DUK1VSR0249 [17:13:44]: [exec] [testname] = SaveNewMetaAndProductDataTest [17:13:44]: [exec] [duration] = 00:00:12.8501276 [17:13:52]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveNewProductDataTest [17:13:52]: [exec] [testtype] = Unit Test [17:13:52]: [exec] [computername] = DUK1VSR0249 [17:13:52]: [exec] [testname] = SaveNewProductDataTest [17:13:52]: [exec] [duration] = 00:00:08.1073762 [17:14:01]: [exec] Passed OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveProductDataTest [17:14:01]: [exec] [testtype] = Unit Test [17:14:01]: [exec] [computername] = DUK1VSR0249 [17:14:01]: [exec] [testname] = SaveProductDataTest [17:14:01]: [exec] [duration] = 00:00:09.0112500 [17:14:01]: [exec] Passed OurProject.Service.DataAccess.UnitTests.TestTester.TestTheTests [17:14:01]: [exec] [testtype] = Unit Test [17:14:01]: [exec] [computername] = DUK1VSR0249 [17:14:01]: [exec] [testname] = TestTheTests [17:14:01]: [exec] [duration] = 00:00:00.0031219 [17:14:11]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetProductGroupsTest [17:14:11]: [exec] [testtype] = Unit Test [17:14:11]: [exec] [computername] = DUK1VSR0249 [17:14:11]: [exec] [testname] = GetProductGroupsTest [17:14:11]: [exec] [duration] = 00:00:09.1045892 [17:14:18]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetProductTreeDataTest [17:14:18]: [exec] [testtype] = Unit Test [17:14:18]: [exec] [computername] = DUK1VSR0249 [17:14:18]: [exec] [testname] = GetProductTreeDataTest [17:14:18]: [exec] [duration] = 00:00:07.8467159 [17:14:27]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetSubstitutesTest [17:14:27]: [exec] [testtype] = Unit Test [17:14:27]: [exec] [computername] = DUK1VSR0249 [17:14:27]: [exec] [testname] = GetSubstitutesTest [17:14:27]: [exec] [duration] = 00:00:08.7182334 [17:14:36]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.SaveProductGroupsTest [17:14:36]: [exec] [testtype] = Unit Test [17:14:36]: [exec] [computername] = DUK1VSR0249 [17:14:36]: [exec] [testname] = SaveProductGroupsTest [17:14:36]: [exec] [duration] = 00:00:08.3517497 [17:14:36]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.CreateInstanceTest [17:14:36]: [exec] [testtype] = Unit Test [17:14:36]: [exec] [computername] = DUK1VSR0249 [17:14:36]: [exec] [testname] = CreateInstanceTest [17:14:36]: [exec] [duration] = 00:00:00.4004321 [17:14:40]: [exec] Failed OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest [17:14:40]: [exec] [errormessage] = Assert.IsTrue failed. [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [errorstacktrace] = at OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest() in c:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProjecteviewBusinessLogicTest.cs:line 126 [17:14:40]: [exec] [testname] = EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest [17:14:40]: [exec] [duration] = 00:00:03.5704009 [17:14:40]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.GetOurProjecteviewEventsTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = GetOurProjecteviewEventsTest [17:14:40]: [exec] [duration] = 00:00:00.2237524 [17:14:40]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusMovesToNextStatus [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = UpdateOurProjecteviewInstanceStatusMovesToNextStatus [17:14:40]: [exec] [duration] = 00:00:00.0529584 [17:14:40]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusWhenStatusIsSummaryDoesNothing [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = UpdateOurProjecteviewInstanceStatusWhenStatusIsSummaryDoesNothing [17:14:40]: [exec] [duration] = 00:00:00.0385769 [17:14:40]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusWithLargerCurrentStatusDoesNothing [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = UpdateOurProjecteviewInstanceStatusWithLargerCurrentStatusDoesNothing [17:14:40]: [exec] [duration] = 00:00:00.0368256 [17:14:40]: [exec] Passed OurProject.Service.BusinessLogic.UnitTests.TestTester.TestTheTests [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = TestTheTests [17:14:40]: [exec] [duration] = 00:00:00.0038722 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.AcceptInstanceStatusConstructorTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = AcceptInstanceStatusConstructorTest [17:14:40]: [exec] [duration] = 00:00:00.0044891 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.OurProjecteviewInstanceIdTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = OurProjecteviewInstanceIdTest [17:14:40]: [exec] [duration] = 00:00:00.0005855 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.OurProjecteviewInstanceStatusContextTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = OurProjecteviewInstanceStatusContextTest [17:14:40]: [exec] [duration] = 00:00:00.0021374 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupProductTest.DisplayIndexTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = DisplayIndexTest [17:14:40]: [exec] [duration] = 00:00:00.0010087 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupProductTest.GroupProductConstructorTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = GroupProductConstructorTest [17:14:40]: [exec] [duration] = 00:00:00.0004508 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupProductTest.ProductCodeTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ProductCodeTest [17:14:40]: [exec] [duration] = 00:00:00.0005098 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.ChildGroupIdsTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ChildGroupIdsTest [17:14:40]: [exec] [duration] = 00:00:00.0021307 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.DescriptionTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = DescriptionTest [17:14:40]: [exec] [duration] = 00:00:00.0004975 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.EndReferenceIdTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = EndReferenceIdTest [17:14:40]: [exec] [duration] = 00:00:00.0005483 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.GroupConstructorTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = GroupConstructorTest [17:14:40]: [exec] [duration] = 00:00:00.0003299 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.GroupIdTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = GroupIdTest [17:14:40]: [exec] [duration] = 00:00:00.0005400 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.GroupProductsTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = GroupProductsTest [17:14:40]: [exec] [duration] = 00:00:00.0008811 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.LevelTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = LevelTest [17:14:40]: [exec] [duration] = 00:00:00.0005221 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.NameTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = NameTest [17:14:40]: [exec] [duration] = 00:00:00.0005777 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.ParentGroupIdTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ParentGroupIdTest [17:14:40]: [exec] [duration] = 00:00:00.0006953 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.GroupTest.StartReferenceIdTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = StartReferenceIdTest [17:14:40]: [exec] [duration] = 00:00:00.0006707 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductInstanceTest.ProductInstanceConstructorTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ProductInstanceConstructorTest [17:14:40]: [exec] [duration] = 00:00:00.0004981 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductInstanceTest.ProductInstanceConstructorTest1 [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ProductInstanceConstructorTest1 [17:14:40]: [exec] [duration] = 00:00:00.0002279 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ColumnNameTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ColumnNameTest [17:14:40]: [exec] [duration] = 00:00:00.0011557 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ColumnWidthScaleTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = ColumnWidthScaleTest [17:14:40]: [exec] [duration] = 00:00:00.0013328 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.CompositeScoreWeightTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = CompositeScoreWeightTest [17:14:40]: [exec] [duration] = 00:00:00.0026718 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.DataTypeTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = DataTypeTest [17:14:40]: [exec] [duration] = 00:00:00.0006514 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.DisplayIndexTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = DisplayIndexTest [17:14:40]: [exec] [duration] = 00:00:00.0005254 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatMagnitudeTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = FormatMagnitudeTest [17:14:40]: [exec] [duration] = 00:00:00.0006078 [17:14:40]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatPrecisionTest [17:14:40]: [exec] [testtype] = Unit Test [17:14:40]: [exec] [computername] = DUK1VSR0249 [17:14:40]: [exec] [testname] = FormatPrecisionTest [17:14:40]: [exec] [duration] = 00:00:00.0006565 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatTypeTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = FormatTypeTest [17:14:41]: [exec] [duration] = 00:00:00.0006336 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.GroupAggregationTypeTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = GroupAggregationTypeTest [17:14:41]: [exec] [duration] = 00:00:00.0022466 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightColourTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = HighlightColourTest [17:14:41]: [exec] [duration] = 00:00:00.0005159 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightLogicalOperatorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = HighlightLogicalOperatorTest [17:14:41]: [exec] [duration] = 00:00:00.0005221 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightLogicalValueTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = HighlightLogicalValueTest [17:14:41]: [exec] [duration] = 00:00:00.0005520 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightTypeTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = HighlightTypeTest [17:14:41]: [exec] [duration] = 00:00:00.0021187 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsCustomTypeTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = IsCustomTypeTest [17:14:41]: [exec] [duration] = 00:00:00.0021256 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsEditableTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = IsEditableTest [17:14:41]: [exec] [duration] = 00:00:00.0004779 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsRequiredForNewProductTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = IsRequiredForNewProductTest [17:14:41]: [exec] [duration] = 00:00:00.0005042 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsSelectableTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = IsSelectableTest [17:14:41]: [exec] [duration] = 00:00:00.0005352 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsVisibleTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = IsVisibleTest [17:14:41]: [exec] [duration] = 00:00:00.0006514 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ProductMetaDataConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductMetaDataConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0002723 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ProductMetaDataIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductMetaDataIdTest [17:14:41]: [exec] [duration] = 00:00:00.0006196 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ResourceKeyTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ResourceKeyTest [17:14:41]: [exec] [duration] = 00:00:00.0008168 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToGroupMetricsTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = VisibleToGroupMetricsTest [17:14:41]: [exec] [duration] = 00:00:00.0013493 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToGroupSummaryTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = VisibleToGroupSummaryTest [17:14:41]: [exec] [duration] = 00:00:00.0006478 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToProductMetricsTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = VisibleToProductMetricsTest [17:14:41]: [exec] [duration] = 00:00:00.0005090 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToProductSubstitutesTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = VisibleToProductSubstitutesTest [17:14:41]: [exec] [duration] = 00:00:00.0007123 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.DescriptionTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = DescriptionTest [17:14:41]: [exec] [duration] = 00:00:00.0009230 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.ProductCodeTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductCodeTest [17:14:41]: [exec] [duration] = 00:00:00.0008908 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.ScoreTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ScoreTest [17:14:41]: [exec] [duration] = 00:00:00.0022268 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.ProductTreeDataConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductTreeDataConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0004383 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.ProductTreeNodesTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductTreeNodesTest [17:14:41]: [exec] [duration] = 00:00:00.0009724 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.RejectedProductTreeNodesTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = RejectedProductTreeNodesTest [17:14:41]: [exec] [duration] = 00:00:00.0007190 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.TreeClustersTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = TreeClustersTest [17:14:41]: [exec] [duration] = 00:00:00.0009615 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.IsExcludedTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = IsExcludedTest [17:14:41]: [exec] [duration] = 00:00:00.0023790 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductCodeTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductCodeTest [17:14:41]: [exec] [duration] = 00:00:00.0005687 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductDescriptionTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductDescriptionTest [17:14:41]: [exec] [duration] = 00:00:00.0010227 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductSequenceIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductSequenceIdTest [17:14:41]: [exec] [duration] = 00:00:00.0006704 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductTreeNodeConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = ProductTreeNodeConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0007079 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventsTest.OurProjecteviewEventsConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewEventsConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0012501 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedByUserIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = CreatedByUserIdTest [17:14:41]: [exec] [duration] = 00:00:00.0015353 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedByUserNameTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = CreatedByUserNameTest [17:14:41]: [exec] [duration] = 00:00:00.0005078 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = CreatedDateTest [17:14:41]: [exec] [duration] = 00:00:00.0006120 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.DescriptionTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = DescriptionTest [17:14:41]: [exec] [duration] = 00:00:00.0006179 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.EndDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = EndDateTest [17:14:41]: [exec] [duration] = 00:00:00.0006313 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastUpdatedDateTest [17:14:41]: [exec] [duration] = 00:00:00.0022838 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedUserIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastUpdatedUserIdTest [17:14:41]: [exec] [duration] = 00:00:00.0006319 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedUserNameTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastUpdatedUserNameTest [17:14:41]: [exec] [duration] = 00:00:00.0007855 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.NameTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = NameTest [17:14:41]: [exec] [duration] = 00:00:00.0006092 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewEventConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0002916 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewEventIdTest [17:14:41]: [exec] [duration] = 00:00:00.0007797 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventStatusTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewEventStatusTest [17:14:41]: [exec] [duration] = 00:00:00.0026472 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.StartDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = StartDateTest [17:14:41]: [exec] [duration] = 00:00:00.0006618 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstancesTest.OurProjecteviewInstancesConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewInstancesConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0011705 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedByUserIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = CreatedByUserIdTest [17:14:41]: [exec] [duration] = 00:00:00.0007249 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedByUserNameTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = CreatedByUserNameTest [17:14:41]: [exec] [duration] = 00:00:00.0013336 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = CreatedDateTest [17:14:41]: [exec] [duration] = 00:00:00.0006285 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.DescriptionTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = DescriptionTest [17:14:41]: [exec] [duration] = 00:00:00.0006660 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.EndDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = EndDateTest [17:14:41]: [exec] [duration] = 00:00:00.0006137 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastUpdatedDateTest [17:14:41]: [exec] [duration] = 00:00:00.0006464 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedUserIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastUpdatedUserIdTest [17:14:41]: [exec] [duration] = 00:00:00.0015387 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedUserNameTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastUpdatedUserNameTest [17:14:41]: [exec] [duration] = 00:00:00.0005570 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastViewedStatusTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = LastViewedStatusTest [17:14:41]: [exec] [duration] = 00:00:00.0004793 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.NameTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = NameTest [17:14:41]: [exec] [duration] = 00:00:00.0005145 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewEventIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewEventIdTest [17:14:41]: [exec] [duration] = 00:00:00.0004992 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceConstructorTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewInstanceConstructorTest [17:14:41]: [exec] [duration] = 00:00:00.0002382 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewInstanceIdTest [17:14:41]: [exec] [duration] = 00:00:00.0005598 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceStatusTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = OurProjecteviewInstanceStatusTest [17:14:41]: [exec] [duration] = 00:00:00.0003978 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.StartDateTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:41]: [exec] [testname] = StartDateTest [17:14:41]: [exec] [duration] = 00:00:00.0005584 [17:14:41]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedByUserIdTest [17:14:41]: [exec] [testtype] = Unit Test [17:14:41]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeLastUpdatedByUserIdTest [17:14:42]: [exec] [duration] = 00:00:00.0016717 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedByUserNameTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeLastUpdatedByUserNameTest [17:14:42]: [exec] [duration] = 00:00:00.0005361 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedDateTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeLastUpdatedDateTest [17:14:42]: [exec] [duration] = 00:00:00.0008383 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeClusterTest.DistanceTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = DistanceTest [17:14:42]: [exec] [duration] = 00:00:00.0009174 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeClusterConstructorTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeClusterConstructorTest [17:14:42]: [exec] [duration] = 00:00:00.0002547 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeClusterIdTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeClusterIdTest [17:14:42]: [exec] [duration] = 00:00:00.0003961 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeEndPointBottomTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeEndPointBottomTest [17:14:42]: [exec] [duration] = 00:00:00.0005442 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeEndPointTopTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeEndPointTopTest [17:14:42]: [exec] [duration] = 00:00:00.0004369 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeEndPointConstructorTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeEndPointConstructorTest [17:14:42]: [exec] [duration] = 00:00:00.0004039 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeEndPointTypeTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeEndPointTypeTest [17:14:42]: [exec] [duration] = 00:00:00.0014711 [17:14:42]: [exec] Passed OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeReferenceIdTest [17:14:42]: [exec] [testtype] = Unit Test [17:14:42]: [exec] [computername] = DUK1VSR0249 [17:14:42]: [exec] [testname] = TreeReferenceIdTest [17:14:42]: [exec] [duration] = 00:00:00.0003634 [17:15:08]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.GetProductGroupsTest [17:15:08]: [exec] [testtype] = Unit Test [17:15:08]: [exec] [computername] = DUK1VSR0249 [17:15:08]: [exec] [testname] = GetProductGroupsTest [17:15:08]: [exec] [duration] = 00:00:26.4617234 [17:15:48]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.GetProductTreeDataTest [17:15:48]: [exec] [testtype] = Unit Test [17:15:48]: [exec] [computername] = DUK1VSR0249 [17:15:48]: [exec] [testname] = GetProductTreeDataTest [17:15:48]: [exec] [duration] = 00:00:39.3105620 [17:16:42]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.SaveProductGroupsTest [17:16:42]: [exec] [testtype] = Unit Test [17:16:42]: [exec] [computername] = DUK1VSR0249 [17:16:42]: [exec] [testname] = SaveProductGroupsTest [17:16:42]: [exec] [duration] = 00:00:54.6900011 [17:16:42]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.CreateInstanceTest [17:16:42]: [exec] [testtype] = Unit Test [17:16:42]: [exec] [computername] = DUK1VSR0249 [17:16:42]: [exec] [testname] = CreateInstanceTest [17:16:42]: [exec] [duration] = 00:00:00.0301909 [17:17:02]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.GetInstanceProductTest [17:17:02]: [exec] [testtype] = Unit Test [17:17:02]: [exec] [computername] = DUK1VSR0249 [17:17:02]: [exec] [testname] = GetInstanceProductTest [17:17:02]: [exec] [duration] = 00:00:19.2601906 [17:17:02]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.GetOurProjecteviewEventsTest [17:17:02]: [exec] [testtype] = Unit Test [17:17:02]: [exec] [computername] = DUK1VSR0249 [17:17:02]: [exec] [testname] = GetOurProjecteviewEventsTest [17:17:02]: [exec] [duration] = 00:00:00.1363125 [17:17:02]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveEventTest [17:17:02]: [exec] [testtype] = Unit Test [17:17:02]: [exec] [computername] = DUK1VSR0249 [17:17:02]: [exec] [testname] = SaveEventTest [17:17:02]: [exec] [duration] = 00:00:00.0679809 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveInstanceProductDataTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = SaveInstanceProductDataTest [17:17:12]: [exec] [duration] = 00:00:10.1048180 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = SaveInstanceTest [17:17:12]: [exec] [duration] = 00:00:00.0212876 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.ReflectionTranslatorConstructorTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = ReflectionTranslatorConstructorTest [17:17:12]: [exec] [duration] = 00:00:00.0012244 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateExcpetionTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateExcpetionTest [17:17:12]: [exec] [duration] = 00:00:00.0042122 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateNullableType [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateNullableType [17:17:12]: [exec] [duration] = 00:00:00.0009350 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateTest [17:17:12]: [exec] [duration] = 00:00:00.0009409 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateWithNullThrowsExcpetionTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateWithNullThrowsExcpetionTest [17:17:12]: [exec] [duration] = 00:00:00.0008587 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.ClearCurrentUserProfileTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = ClearCurrentUserProfileTest [17:17:12]: [exec] [duration] = 00:00:00.0043488 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.IsAuthorisedUserTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = IsAuthorisedUserTest [17:17:12]: [exec] [duration] = 00:00:00.0466184 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.SecurityServiceConstructorTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = SecurityServiceConstructorTest [17:17:12]: [exec] [duration] = 00:00:00.0003813 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TestTester.TestTheTests [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TestTheTests [17:17:12]: [exec] [duration] = 00:00:00.0049620 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenGroupAndGroupTest.TranslateGroupBusinessEnityToGroupDataContractTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateGroupBusinessEnityToGroupDataContractTest [17:17:12]: [exec] [duration] = 00:00:00.0029749 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenGroupAndGroupTest.TranslateGroupDataContractToGroupBusinessEntityTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateGroupDataContractToGroupBusinessEntityTest [17:17:12]: [exec] [duration] = 00:00:00.0024229 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductInstanceAndProductInstanceTest.TranslateProductInstanceBusinessEntityToProductInstanceDataContractTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateProductInstanceBusinessEntityToProductInstanceDataContractTest [17:17:12]: [exec] [duration] = 00:00:00.0033747 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductInstanceAndProductInstanceTest.TranslateProductInstanceDataContractToProductInstanceBusinessEntityTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateProductInstanceDataContractToProductInstanceBusinessEntityTest [17:17:12]: [exec] [duration] = 00:00:00.0043994 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductMetaDataAndProductMetaDataTest.TranslateProductMetaDataBusinessEntityToProductMetaDataDataContractTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateProductMetaDataBusinessEntityToProductMetaDataDataContractTest [17:17:12]: [exec] [duration] = 00:00:00.0019432 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductMetaDataAndProductMetaDataTest.TranslateProductMetaDataDataContractToProductMetaDataBusinessEntityTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateProductMetaDataDataContractToProductMetaDataBusinessEntityTest [17:17:12]: [exec] [duration] = 00:00:00.0016516 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductSubstituteAndProductSubstituteTest.TranslateProductSubstituteBusinessEntityToProductSubstituteDataContractTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateProductSubstituteBusinessEntityToProductSubstituteDataContractTest [17:17:12]: [exec] [duration] = 00:00:00.0036912 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductSubstituteAndProductSubstituteTest.TranslateProductSubstituteDataContractToProductSubstituteBusinessEntityTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateProductSubstituteDataContractToProductSubstituteBusinessEntityTest [17:17:12]: [exec] [duration] = 00:00:00.0016773 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenOurProjecteviewEventsAndOurProjecteviewEventsTest.TranslateOurProjecteviewEventToOurProjecteviewEventTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateOurProjecteviewEventToOurProjecteviewEventTest [17:17:12]: [exec] [duration] = 00:00:00.0029922 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenTreeClusterAndTreeClusterTest.TranslateTreeClusterBusinessEnityToTreeClusterDataContractTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateTreeClusterBusinessEnityToTreeClusterDataContractTest [17:17:12]: [exec] [duration] = 00:00:00.0021407 [17:17:12]: [exec] Passed OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenTreeClusterAndTreeClusterTest.TranslateTreeClusterDataContractToTreeClusterBusinessEntityTest [17:17:12]: [exec] [testtype] = Unit Test [17:17:12]: [exec] [computername] = DUK1VSR0249 [17:17:12]: [exec] [testname] = TranslateTreeClusterDataContractToTreeClusterBusinessEntityTest [17:17:12]: [exec] [duration] = 00:00:00.0033465 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductGroupsTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = GetProductGroupsTest [17:17:18]: [exec] [duration] = 00:00:04.9461724 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductSubstitutesTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = GetProductSubstitutesTest [17:17:18]: [exec] [duration] = 00:00:00.0280206 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductTreeDataTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = GetProductTreeDataTest [17:17:18]: [exec] [duration] = 00:00:00.0157391 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GrouperServiceConstructorTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = GrouperServiceConstructorTest [17:17:18]: [exec] [duration] = 00:00:00.0070813 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.SaveProductGroupsSecondOverloadTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = SaveProductGroupsSecondOverloadTest [17:17:18]: [exec] [duration] = 00:00:00.0130340 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.SaveProductGroupsTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = SaveProductGroupsTest [17:17:18]: [exec] [duration] = 00:00:00.0083884 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.ObjectivesServiceTest.CalculateCompositeScoreTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = CalculateCompositeScoreTest [17:17:18]: [exec] [duration] = 00:00:00.0349393 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.CreateInstanceTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = CreateInstanceTest [17:17:18]: [exec] [duration] = 00:00:00.0629563 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.GetInstanceProductDataTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = GetInstanceProductDataTest [17:17:18]: [exec] [duration] = 00:00:00.0167750 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.GetOurProjecteviewEventsTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = GetOurProjecteviewEventsTest [17:17:18]: [exec] [duration] = 00:00:00.0119450 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.OurProjecteviewServiceConstructorTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = OurProjecteviewServiceConstructorTest [17:17:18]: [exec] [duration] = 00:00:00.0054213 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveEventTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = SaveEventTest [17:17:18]: [exec] [duration] = 00:00:00.0636740 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceProductDataTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = SaveInstanceProductDataTest [17:17:18]: [exec] [duration] = 00:00:00.0319755 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceStatusTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = SaveInstanceStatusTest [17:17:18]: [exec] [duration] = 00:00:00.0179964 [17:17:18]: [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [17:17:18]: [exec] [testtype] = Unit Test [17:17:18]: [exec] [computername] = DUK1VSR0249 [17:17:18]: [exec] [testname] = SaveInstanceTest [17:17:18]: [exec] [duration] = 00:00:00.0642634 [17:17:19]: [exec] 179/180 test(s) Passed, 1 Failed [17:17:19]: [exec] Summary [17:17:19]: [exec] ------- [17:17:19]: [exec] Test Run Failed. [17:17:19]: [exec] Passed 179 [17:17:19]: [exec] Failed 1 [17:17:19]: [exec] ----------- [17:17:19]: [exec] Total 180 [17:17:19]: [exec] Detail property not found: name [17:17:19]: [exec] Results file: C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\unittests\mstest-results.trx [17:17:19]: [exec] Run Configuration: Default Run Configuration [17:17:19]: [exec] C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.main.build(923,6): External Program Failed: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\MSTest.exe (return code was 1) [17:17:19]: [runmstests] ##teamcity[importData type='mstest' path='Output\CI\OurProject\reports\unittests\mstest-results.trx'] [17:17:19]: [runmstests] if [17:17:19]: [runmstests] property [17:17:19]: [runmstests] if [17:17:19]: C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.main.build(931,10): MSTest Tests Failed. Check logs for errors. [17:17:19]: Importing data from 'Output\CI\OurProject\reports\unittests\mstest-results.trx' with 'mstest' processor [17:17:19]: MSTest [17:17:19]: [MSTest] Found 180 test definitions. [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetProductGroupsTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetProductTreeNodesTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetRejectedProductTreeNodesTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithNullProductCodeThrowsArgumentNullException [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithOurProjecteviewInstanceIdLessThanOneThrowsArgumentOutOfRangeException [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithUserIdLessThanOneThrowsArgumentOutOfRangeException [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetTreeClusterDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.SaveNewProductsForLevel1GroupTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.SaveProductGroupsTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.JobRepositoryTest.GetJobsForUserTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.ObjectivesRepositoryTest.GetCompositeScoreDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetAllMetaDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetInstanceProductDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetInstanceProductDataWithIdLessThanOneThrowsArgumentOutOfRangeExceptionTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewEventsTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewInstanceTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewInstanceWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewWithInstanceTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveEventWithExistingIdUpdatesEventAndReturnsInstances [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveEventWithNonExisitantIdInsertsEvent [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveInstanceWithExistingIdUpdatesInstance [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveInstanceWithNonExisitantIdInsertsInstance [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveMetaDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveNewMetaAndProductDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveNewProductDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveProductDataTest [17:17:19]: [MSTest] OurProject.Service.DataAccess.UnitTests.TestTester.TestTheTests [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetProductGroupsTest [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetProductTreeDataTest [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetSubstitutesTest [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.SaveProductGroupsTest [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.CreateInstanceTest [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest [17:17:19]: [OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest] Assert.IsTrue failed. [17:17:19]: [OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest] Assert.IsTrue failed. at OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest() in c:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProjecteviewBusinessLogicTest.cs:line 126 [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.GetOurProjecteviewEventsTest [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusMovesToNextStatus [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusWhenStatusIsSummaryDoesNothing [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusWithLargerCurrentStatusDoesNothing [17:17:19]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.TestTester.TestTheTests [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.AcceptInstanceStatusConstructorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.OurProjecteviewInstanceIdTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.OurProjecteviewInstanceStatusContextTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupProductTest.DisplayIndexTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupProductTest.GroupProductConstructorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupProductTest.ProductCodeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.ChildGroupIdsTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.DescriptionTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.EndReferenceIdTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.GroupConstructorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.GroupIdTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.GroupProductsTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.LevelTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.NameTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.ParentGroupIdTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.StartReferenceIdTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductInstanceTest.ProductInstanceConstructorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductInstanceTest.ProductInstanceConstructorTest1 [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ColumnNameTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ColumnWidthScaleTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.CompositeScoreWeightTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.DataTypeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.DisplayIndexTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatMagnitudeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatPrecisionTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatTypeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.GroupAggregationTypeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightColourTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightLogicalOperatorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightLogicalValueTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightTypeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsCustomTypeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsEditableTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsRequiredForNewProductTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsSelectableTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsVisibleTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ProductMetaDataConstructorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ProductMetaDataIdTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ResourceKeyTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToGroupMetricsTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToGroupSummaryTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToProductMetricsTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToProductSubstitutesTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.DescriptionTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.ProductCodeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.ScoreTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.ProductTreeDataConstructorTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.ProductTreeNodesTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.RejectedProductTreeNodesTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.TreeClustersTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.IsExcludedTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductCodeTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductDescriptionTest [17:17:19]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductSequenceIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductTreeNodeConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventsTest.OurProjecteviewEventsConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedByUserIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedByUserNameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.DescriptionTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.EndDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedUserIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedUserNameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.NameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventStatusTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.StartDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstancesTest.OurProjecteviewInstancesConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedByUserIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedByUserNameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.DescriptionTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.EndDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedUserIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedUserNameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastViewedStatusTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.NameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewEventIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceStatusTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.StartDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedByUserIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedByUserNameTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedDateTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.DistanceTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeClusterConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeClusterIdTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeEndPointBottomTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeEndPointTopTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeEndPointConstructorTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeEndPointTypeTest [17:17:20]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeReferenceIdTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.GetProductGroupsTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.GetProductTreeDataTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.SaveProductGroupsTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.CreateInstanceTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.GetInstanceProductTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.GetOurProjecteviewEventsTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveEventTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveInstanceProductDataTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.ReflectionTranslatorConstructorTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateExcpetionTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateNullableType [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateWithNullThrowsExcpetionTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.ClearCurrentUserProfileTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.IsAuthorisedUserTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.SecurityServiceConstructorTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TestTester.TestTheTests [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenGroupAndGroupTest.TranslateGroupBusinessEnityToGroupDataContractTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenGroupAndGroupTest.TranslateGroupDataContractToGroupBusinessEntityTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductInstanceAndProductInstanceTest.TranslateProductInstanceBusinessEntityToProductInstanceDataContractTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductInstanceAndProductInstanceTest.TranslateProductInstanceDataContractToProductInstanceBusinessEntityTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductMetaDataAndProductMetaDataTest.TranslateProductMetaDataBusinessEntityToProductMetaDataDataContractTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductMetaDataAndProductMetaDataTest.TranslateProductMetaDataDataContractToProductMetaDataBusinessEntityTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductSubstituteAndProductSubstituteTest.TranslateProductSubstituteBusinessEntityToProductSubstituteDataContractTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductSubstituteAndProductSubstituteTest.TranslateProductSubstituteDataContractToProductSubstituteBusinessEntityTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenOurProjecteviewEventsAndOurProjecteviewEventsTest.TranslateOurProjecteviewEventToOurProjecteviewEventTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenTreeClusterAndTreeClusterTest.TranslateTreeClusterBusinessEnityToTreeClusterDataContractTest [17:17:20]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenTreeClusterAndTreeClusterTest.TranslateTreeClusterDataContractToTreeClusterBusinessEntityTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductGroupsTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductSubstitutesTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductTreeDataTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GrouperServiceConstructorTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.SaveProductGroupsSecondOverloadTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.SaveProductGroupsTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.ObjectivesServiceTest.CalculateCompositeScoreTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.CreateInstanceTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.GetInstanceProductDataTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.GetOurProjecteviewEventsTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.OurProjecteviewServiceConstructorTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveEventTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceProductDataTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceStatusTest [17:17:20]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [17:17:20]: [MSTest] 180 test(s) were reported [17:17:25]: NAnt output: [exec] [computername] = DUK1VSR0249 [exec] [testname] = SaveInstanceStatusTest [exec] [duration] = 00:00:00.0179964 [exec] Passed OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [exec] [testtype] = Unit Test [exec] [computername] = DUK1VSR0249 [exec] [testname] = SaveInstanceTest [exec] [duration] = 00:00:00.0642634 [exec] 179/180 test(s) Passed, 1 Failed [exec] Summary [exec] ------- [exec] Test Run Failed. [exec] Passed 179 [exec] Failed 1 [exec] ----------- [exec] Total 180 [exec] Detail property not found: name [exec] Results file: C:\BuildAgent\work\427aac12d86a3c69\Output\CI\OurProject\reports\unittests\mstest-results.trx [exec] Run Configuration: Default Run Configuration [exec] C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.main.build(923,6): [exec] External Program Failed: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\MSTest.exe (return code was 1) [echo] [17:17:25]: ##teamcity[importData type='mstest' path='Output\CI\OurProject\reports\unittests\mstest-results.trx'] [17:17:25]: BUILD FAILED - 1 non-fatal error(s), 0 warning(s) C:\BuildAgent\work\427aac12d86a3c69\BuildScripts\dh.main.build(931,10): MSTest Tests Failed. Check logs for errors. Total time: 557.6 seconds. [17:17:25]: Importing data from 'Output\CI\OurProject\reports\unittests\mstest-results.trx' with 'mstest' processor [17:17:25]: MSTest [17:17:25]: [MSTest] Process exit code: 1 [17:17:25]: [MSTest] Waiting for 3 service processes to complete [17:17:25]: [MSTest] Found 180 test definitions. [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetProductTreeNodesTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetRejectedProductTreeNodesTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithNullProductCodeThrowsArgumentNullException [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithOurProjecteviewInstanceIdLessThanOneThrowsArgumentOutOfRangeException [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetSubstitutesWithUserIdLessThanOneThrowsArgumentOutOfRangeException [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.GetTreeClusterDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.SaveNewProductsForLevel1GroupTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.GrouperRepositoryTest.SaveProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.JobRepositoryTest.GetJobsForUserTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.ObjectivesRepositoryTest.GetCompositeScoreDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetAllMetaDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetInstanceProductDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetInstanceProductDataWithIdLessThanOneThrowsArgumentOutOfRangeExceptionTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewEventsTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewInstanceTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewInstanceWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewWithIdLessThanZeroThrowsArgumentOutOfRangeException [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.GetOurProjecteviewWithInstanceTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveEventWithExistingIdUpdatesEventAndReturnsInstances [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveEventWithNonExisitantIdInsertsEvent [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveInstanceWithExistingIdUpdatesInstance [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveInstanceWithNonExisitantIdInsertsInstance [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveMetaDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveNewMetaAndProductDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveNewProductDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.OurProjecteviewRepositoryTest.SaveProductDataTest [17:17:25]: [MSTest] OurProject.Service.DataAccess.UnitTests.TestTester.TestTheTests [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetProductTreeDataTest [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.GetSubstitutesTest [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.GrouperBusinessLogicTest.SaveProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.CreateInstanceTest [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest [17:17:25]: [OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest] Assert.IsTrue failed. [17:17:25]: [OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest] Assert.IsTrue failed. at OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.EnsureCompositeScoreIsCalculatedWhenMovingToDefineObjectivesTest() in c:\BuildAgent\work\427aac12d86a3c69\OurProject\OurProject.Service\Tests\Unit Tests\OurProject.Service.BusinessLogic.UnitTests\OurProjecteviewBusinessLogicTest.cs:line 126 [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.GetOurProjecteviewEventsTest [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusMovesToNextStatus [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusWhenStatusIsSummaryDoesNothing [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.OurProjecteviewBusinessLogicTest.UpdateOurProjecteviewInstanceStatusWithLargerCurrentStatusDoesNothing [17:17:25]: [MSTest] OurProject.Service.BusinessLogic.UnitTests.TestTester.TestTheTests [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.AcceptInstanceStatusConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.OurProjecteviewInstanceIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.AcceptInstanceStatusTest.OurProjecteviewInstanceStatusContextTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupProductTest.DisplayIndexTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupProductTest.GroupProductConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupProductTest.ProductCodeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.ChildGroupIdsTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.DescriptionTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.EndReferenceIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.GroupConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.GroupIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.GroupProductsTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.LevelTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.NameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.ParentGroupIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.GroupTest.StartReferenceIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductInstanceTest.ProductInstanceConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductInstanceTest.ProductInstanceConstructorTest1 [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ColumnNameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ColumnWidthScaleTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.CompositeScoreWeightTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.DataTypeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.DisplayIndexTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatMagnitudeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatPrecisionTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.FormatTypeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.GroupAggregationTypeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightColourTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightLogicalOperatorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightLogicalValueTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.HighlightTypeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsCustomTypeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsEditableTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsRequiredForNewProductTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsSelectableTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.IsVisibleTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ProductMetaDataConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ProductMetaDataIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.ResourceKeyTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToGroupMetricsTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToGroupSummaryTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToProductMetricsTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductMetaDataTest.VisibleToProductSubstitutesTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.DescriptionTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.ProductCodeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductSubstituteTest.ScoreTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.ProductTreeDataConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.ProductTreeNodesTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.RejectedProductTreeNodesTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeDataTest.TreeClustersTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.IsExcludedTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductCodeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductDescriptionTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductSequenceIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.ProductTreeNodeTest.ProductTreeNodeConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventsTest.OurProjecteviewEventsConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedByUserIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedByUserNameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.CreatedDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.DescriptionTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.EndDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedUserIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.LastUpdatedUserNameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.NameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.OurProjecteviewEventStatusTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewEventTest.StartDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstancesTest.OurProjecteviewInstancesConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedByUserIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedByUserNameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.CreatedDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.DescriptionTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.EndDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedUserIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastUpdatedUserNameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.LastViewedStatusTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.NameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewEventIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.OurProjecteviewInstanceStatusTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.StartDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedByUserIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedByUserNameTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.OurProjecteviewInstanceTest.TreeLastUpdatedDateTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.DistanceTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeClusterConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeClusterIdTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeEndPointBottomTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeClusterTest.TreeEndPointTopTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeEndPointConstructorTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeEndPointTypeTest [17:17:25]: [MSTest] OurProject.Service.DataContracts.UnitTests.TreeEndPointTest.TreeReferenceIdTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.GetProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.GetProductTreeDataTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.GrouperServiceTest.SaveProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.CreateInstanceTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.GetInstanceProductTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.GetOurProjecteviewEventsTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveEventTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveInstanceProductDataTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.ReflectionTranslatorConstructorTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateExcpetionTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateNullableType [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.ReflectionTranslatorTest.TranslateWithNullThrowsExcpetionTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.ClearCurrentUserProfileTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.IsAuthorisedUserTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.SecurityServiceTest.SecurityServiceConstructorTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TestTester.TestTheTests [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenGroupAndGroupTest.TranslateGroupBusinessEnityToGroupDataContractTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenGroupAndGroupTest.TranslateGroupDataContractToGroupBusinessEntityTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductInstanceAndProductInstanceTest.TranslateProductInstanceBusinessEntityToProductInstanceDataContractTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductInstanceAndProductInstanceTest.TranslateProductInstanceDataContractToProductInstanceBusinessEntityTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductMetaDataAndProductMetaDataTest.TranslateProductMetaDataBusinessEntityToProductMetaDataDataContractTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductMetaDataAndProductMetaDataTest.TranslateProductMetaDataDataContractToProductMetaDataBusinessEntityTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductSubstituteAndProductSubstituteTest.TranslateProductSubstituteBusinessEntityToProductSubstituteDataContractTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenProductSubstituteAndProductSubstituteTest.TranslateProductSubstituteDataContractToProductSubstituteBusinessEntityTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenOurProjecteviewEventsAndOurProjecteviewEventsTest.TranslateOurProjecteviewEventToOurProjecteviewEventTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenTreeClusterAndTreeClusterTest.TranslateTreeClusterBusinessEnityToTreeClusterDataContractTest [17:17:25]: [MSTest] OurProject.Service.ServiceImplementation.UnitTests.TranslateBetweenTreeClusterAndTreeClusterTest.TranslateTreeClusterDataContractToTreeClusterBusinessEntityTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductSubstitutesTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GetProductTreeDataTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.GrouperServiceConstructorTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.SaveProductGroupsSecondOverloadTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.GrouperServiceTest.SaveProductGroupsTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.ObjectivesServiceTest.CalculateCompositeScoreTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.CreateInstanceTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.GetInstanceProductDataTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.GetOurProjecteviewEventsTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.OurProjecteviewServiceConstructorTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveEventTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceProductDataTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceStatusTest [17:17:25]: [MSTest] OurProject.Service.ServiceProxy.UnitTests.OurProjecteviewServiceTest.SaveInstanceTest [17:17:25]: [MSTest] 180 test(s) were reported [17:17:39]: Total: 514 (+5 -0) Errors: 260 (+0 -0) [17:17:25]: Publishing artifacts [17:17:25]: [Publishing artifacts] Paths to publish: [Output\CI\OurProject\reports\unittests\coveragereport.html, , Output\CI\OurProject\reports\fxcop\FxCopReport.html, , Output\CI\OurProject\logs\BuildLog_FlexUI.xml, , Output\CI\** => LatestOurProjectCI, , OurProject.Web\** => LatestDHOurProjectCI, teamcity-info.xml] [17:17:39]: [Publishing artifacts] Publishing artifacts 'Output/CI/OurProject/reports/unittests/coveragereport.html' to root artifacts directory [17:17:39]: [Publishing artifacts] Artifacts path Output/CI/OurProject/reports/unittests/coveragereport.html not found [17:17:39]: [Publishing artifacts] Publishing artifacts 'Output/CI/OurProject/reports/fxcop/FxCopReport.html' to root artifacts directory [17:17:39]: [Publishing artifacts] Artifacts path Output/CI/OurProject/reports/fxcop/FxCopReport.html not found [17:17:39]: [Publishing artifacts] Publishing artifacts 'Output/CI/OurProject/logs/BuildLog_FlexUI.xml' to root artifacts directory [17:17:39]: [Publishing artifacts] Artifacts path Output/CI/OurProject/logs/BuildLog_FlexUI.xml not found [17:17:39]: [Publishing artifacts] Publishing artifacts 'Output/CI/**' to LatestOurProjectCI [17:17:46]: [Publishing artifacts] Publishing artifacts 'OurProject.Web/**' to LatestDHOurProjectCI [17:17:49]: Build finished