2013-07-29 107 views
0

我正在創建一個程序來啓動一系列項目的構建。我從啓動Visual Studio 2010命令提示符的代碼中調用一個批處理文件,並根據我選擇構建的項目執行各種tfsbuild開始命令。我指定了以下參數:TFSBuild start/collection:http:// [myServer]:8080 // builddefinition:「myProject/myBuildDefinition」。執行批處理文件後,我得到以下錯誤,但我回到TFS中,構建開始併成功。tfsBuild在開始構建時拋出異常,但仍然構建

Unhandled Exception: System.NullReferenceException: Object reference not set to 
an instance of an object. 
    at Microsoft.TeamFoundation.Build.Client.InformationNodeConverters.GetBuildSt 
eps(IBuildInformation buildInformation) 
    at Microsoft.TeamFoundation.Build.CommandLine.CommandStart.build_StatusChange 
d(Object sender, StatusChangedEventArgs e) 
    at Microsoft.TeamFoundation.Build.CommandLine.CommandStart.Run() 
    at Microsoft.TeamFoundation.Build.CommandLine.BuildCommandLine.RunCommand(Str 
ing commandName, String[] args, Boolean& showExitCode) 
    at Microsoft.TeamFoundation.Client.CommandLine.RunCommand(String[] args) 
    at Microsoft.TeamFoundation.Client.CommandLine.Run(String[]& args) 
    at Microsoft.TeamFoundation.Build.CommandLine.BuildCommandLine.Main(String[] 
args) 

有人知道這個問題嗎?我在調用tfsBuild時是否缺少一個參數?

[使用C#代碼]

private void _buildButton_Click(object sender, EventArgs e) 
    { 
     if (_selectedProjectFolder.Equals("ProjectA")) 
      Process.Start(@"N:\Build batch files\ProjectA_Build.bat"); 

     else if (_selectedProjectFolder.Equals("ProjectB")) 
      Process.Start(@"N:\Build batch files\ProjectB_Build.bat"); 

     else if (_selectedProjectFolder.Equals("ProjectC")) 
     { 
      if (_build32RadioButton.Checked == true) 
       Process.Start(@"N:\Build batch files\ProjectC_Build_32.bat"); 

      else if (_build64RadioButton.Checked == true) 
       Process.Start(@"N:\Build batch files\ProjectC_Build_64.bat"); 
     }    
    } 

[批處理文件內容]

Call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" 
TFSBuild start /collection:http://[MyServer]:8080/ /builddefinition:"MyProject/MyBuild" 
+0

請張貼的代碼。 – Isaiah4110

+0

我添加了我使用的代碼。 –

+0

發佈您正在調用BAT文件的整個C#代碼/方法。我不認爲這與bat文件或TFSBUILD啓動命令有關。它在你的C#代碼中。 – Isaiah4110

回答

0

此問題是由方法 「InformationNodeConverters.GetBuildSteps(IBuildInformation)」,當它是引起與更新版本的TFS服務器交談。

請注意,Visual Studio Team System 2008團隊基礎服務器之後不再使用構建,並已用各種新信息節點類型(包括IBuildMessage,IBuildError,IBuildWarning和IActivityTracking)替換。其結果是,交談運行新版本的服務器時,這種方法通常會返回一個空列表(例如,Team Foundation Server的2010)

http://msdn.microsoft.com/en-us/library/ff734692(v=vs.100).aspx

+0

謝謝,你認爲在目前的狀態下我能做些什麼嗎? –

+0

我假設你正在使用舊的VS2008構建定義吧?你可以在VS2010工作流中創建一個簡單的構建定義,並從命令行調用它。我希望它不會拋出錯誤。 – Isaiah4110

相關問題