2015-06-12 99 views
0

我安裝了TFS 2013並配置了構建服務,但我試圖構建一個在.NET 2.0上編寫的舊應用程序。每次運行構建我收到此錯誤:TFS 2013 Build Agent目標.NET版本

<link-to-file> (24): Reference required to assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' containing the base class 'System.Web.UI.Control'. Add one to your project. 

我檢查並在服務器上安裝.NET 2.0版本。 我的問題是如何將構建定義更改爲目標的另一個版本的框架,因爲我的猜測是版本不正確,但我找不到在哪裏做。

回答

2

您可以使用the /ToolsVersion switch您需要進入構建過程的高級設置並將該開關添加爲MSBuild參數。

/ToolsVersion:2.0

相關問題