2

今日、私たちの開発者の 1 人が、ビルド後の subwcrev コマンドから「エラー 9009」を受け取りました。コマンドラインでうまくいきました。それを修正したのは、Visual Studio の再起動でした。他の何人かの人々は、SVN を更新したり、パス上にあることを確認したりすることが原因であることに気付きました。 http://forum.battleclinic.com/index.php?topic=42617.0;建物の問題 http://www.autismcollaborative.org/wiki/index.php?title=トラブルシューティング

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 に答える