一直被一個問題所困擾,那就是運行CLR—Windows窗體應用程序的時候,即使什麼代碼也不寫,直接編譯運行也會報錯:“error PRJ0003 : 生成 cmd.exe 時出錯” 。
一直在查找資料,看到是因為VS2005的環境變量設置不對,應該如下解決:
solution:
tools=> Options => Projects and Solutions -> VC++ DirectorIEs page
then place below rows:
$(SystemRoot)\System32
$(SystemRoot)
$(SystemRoot)\System32\wbem
但是我一直沒有找到Projects and Solutions ,最後才發現原來是由於“工具”-〉“選項”裡的“顯示所有設置”沒有勾選,只要勾上就會有“項目和解決方案”的選項,在該項目下添加
$(SystemRoot)\System32
$(SystemRoot)
$(SystemRoot)\System32\wbem
就OK了。