2

今天,我们的一位开发人员从我的 subwcrev 构建后命令中收到“错误 9009”。它在命令行中运行良好。修复它的是重新启动 Visual Studio。其他几个人发现更新 SVN 和/或确保它在路径上是罪魁祸首; http://forum.battleclinic.com/index.php?topic=42617.0;建筑问题 http://www.autismcollaborative.org/wiki/index.php?title=Troubleshooting

我很惊讶没有看到 SubWcRev 的错误代码及其含义的列表。有谁知道在哪里可以找到那个?谢谢你!

4

2 回答 2

7

您可以在源代码中找到错误代码。

// Internal error codes
#define ERR_SYNTAX      1   // Syntax error
#define ERR_FNF         2   // File/folder not found
#define ERR_OPEN        3   // File open error
#define ERR_ALLOC       4   // Memory allocation error
#define ERR_READ        5   // File read/write/size error
#define ERR_SVN_ERR     6   // SVN error
// Documented error codes
#define ERR_SVN_MODS    7   // Local mods found (-n)
#define ERR_SVN_MIXED   8   // Mixed rev WC found (-m)
#define ERR_OUT_EXISTS  9   // Output file already exists (-d)
#define ERR_NOWC       10   // the path is not a working copy or part of one
于 2012-05-02T10:36:57.883 回答
-2

将其从以下位置删除:项目--> 属性 ---> 构建事件 --> 预构建事件命令行

subwcrev "$(SolutionDir)." "$(ProjectDir)Properties\AssemblyInfoTemplate.cs" "$(ProjectDir)Properties\AssemblyInfo.cs" -f

然后构建项目

于 2015-09-25T15:23:22.977 回答