HI,I have been using C# with .NET for years, and before that used C++ in VS6
C++ without any problems.When I tried C++ in VS.NET the default build always
fails. It doesn't tell what happened, just creates HTML file.I need to know
how to troubleshoot it, where is the log. The so called RSP000005.rsp is the
command, not the output.Task list is blank!It works perfectly fine from
command line, e.g. cl.exe /Zi /clr HelloVC.cpp.I need to know why the VS.NET
adds dozens of step for just HelloWorld Application, and how to make it just
use "/Zi /clr" that work.Here is the cryptic log: (By the way it even
deletes the RSP000005.rsp file, and there is no error except"Build log was
saved at
"file://f:\Edixml\Dev\ConsoleWin321\Debug\BuildLog.htm"ConsoleWin321 - 1
error(s), 0 warning(s)"Creating temporary file
"f:\Edixml\Dev\ConsoleWin321\Debug\RSP000005.rsp" with contents
[
/Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Gm /EHsc /RTC1 /MLd
/Yu"stdafx.h" /Fp"Debug/ConsoleWin321.pch" /Fo"Debug/" /Fd"Debug/vc70.pdb"
/W3 /c /Wp64 /ZI /TP
.\ConsoleWin321.cpp
]
Creating command line "cl.exe
@f:\Edixml\Dev\ConsoleWin321\Debug\RSP000005.rsp /nologo"
Creating temporary file "f:\Edixml\Dev\ConsoleWin321\Debug\RSP000006.rsp"
with contents
[
/Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Gm /EHsc /RTC1 /MLd
/Yc"stdafx.h" /Fp"Debug/ConsoleWin321.pch" /Fo"Debug/" /Fd"Debug/vc70.pdb"
/W3 /c /Wp64 /ZI /TP
.\stdafx.cpp
]
Creating command line "cl.exe
@f:\Edixml\Dev\ConsoleWin321\Debug\RSP000006.rsp /nologo"
Pete H said:
I would like to have my new C++ projects start out with two
configurations, UnicodeDebug and UnicodeRelease, instead of the standard
Debug and Release configurations that Visual Studio always creates. Is
there a way to configure Visual Studio to do this?