我按照这里的指示https://github.com/RallyTools/RallyRestToolkitFor.NET允许我的C#程序转到Rally并获取Sprint信息。在我创建引用的.dll,将我的框架更改为4.0并重建之后,C#无法识别下一步中引用的对象:
“RallyRestApi restApi = new RallyRestApi(”myuser@company.com“,”password“,”https://rally1.rallydev.com“,”1.40“)
C#确实识别名称空间“Rally”,我确实用“使用Rally”来引入它。
任何提示?还有办法找到所有项目的列表(例如,迭代/冲刺)Rally.RestApi.dll可以查询吗?
答案 0 :(得分:0)
在Solution Explorer中,在References下,找到Rally.RestApi。在“属性”中检查其版本。是2.0.2,这是最新的? 将代码中的WS API版本更改为v2.0。 1.40不受支持。
restApi = new RallyRestApi("myuser@company.com", "password", "https://rally1.rallydev.com", "v2.0");
Rally.RestApi
中有Rally.RestApi.Response
和using
吗?
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using Rally.RestApi;
using Rally.RestApi.Response;
您可能会看到一些完整的代码示例here。