2013-04-12 89 views
2

我的後生成事件工作,但在某些情況下,我很確定它在控制檯窗口中顯示錯誤。但是,由於窗口立即關閉,我無法讀取任何內容。Visual Studio後構建:保持控制檯打開?

這是生成事件:

if $(ConfigurationName) == Release start xcopy /y "$(TargetDir)*.dll" "$(ProjectDir)../../bin" 

基本上它拷貝到其他目錄內置的DLL。

有沒有辦法強制start調用的控制檯窗口保持打開狀態直到關閉它?

+0

將'&& pause'追加到命令中。 – Luke

+0

這似乎並沒有伎倆。 –

回答

1

我認爲你想要的信息是寫在「輸出」(視圖>輸出或Ctrl-W + O)。這些信息在所有內容都運行後仍然可以寫入/可用。

例如,輸出

echo Information on the post build event 
some_non_existant_command 

Information on the post build event 
'some_non_existant_command' is not recognized as an internal or external command, operable program or batch file. 

,這將給你在什麼地方出了錯比錯誤列表(按Ctrl-W + E)更好的提示將僅顯示隱藏的東西,如「...退出代碼9009」

所以,我的建議,檢查輸出!

希望它有幫助。

相關問題