我正在創建一個程序來啓動一系列項目的構建。我從啓動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"
請張貼的代碼。 – Isaiah4110
我添加了我使用的代碼。 –
發佈您正在調用BAT文件的整個C#代碼/方法。我不認爲這與bat文件或TFSBUILD啓動命令有關。它在你的C#代碼中。 – Isaiah4110