2

我尝试获取沙盒的非成员。但我收到这些错误消息。

si viewnonmembers -sandbox=D:\Sandboxes\project.pj

*** MKS124814: Cannot show view information: MKS125335: Out of tree members and
subprojects (not located in the project directory or a subdirectory of the proje
ct directory) are not supported.
4

2 回答 2

0

非成员只能在沙箱上下文中查看,不能从任何项目视图操作中查看。

因此,在执行命令之前,您应该跳转到本地沙箱位置:

cd SandboxFolderPath

当您在沙盒文件夹中时,您可以执行

si viewnonmembers 
于 2015-07-07T13:09:21.840 回答
0

在您的帮助下,si viewnonmembers您可以使用选项--cwd=value Act as if command executed in specified directory,因此命令应如下所示:

si viewnonmembers --sandbox="D:\sandbox\test\project.pj" --cwd="D:\sandbox\test"

--recurse可选择跳过Do you want to recurse into the directory...

si viewnonmembers --sandbox="D:\sandbox\test\project.pj" --cwd="D:\sandbox\test" --recurse

根据您的服务器配置,.pj可能不是project.pj

于 2015-07-22T11:20:58.520 回答