Click here to Skip to main content
16,018,417 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
bwilhite16-Jan-08 8:18
bwilhite16-Jan-08 8:18 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
Mark Salsbery16-Jan-08 8:25
Mark Salsbery16-Jan-08 8:25 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
bwilhite16-Jan-08 8:29
bwilhite16-Jan-08 8:29 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
bwilhite16-Jan-08 8:31
bwilhite16-Jan-08 8:31 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
bwilhite16-Jan-08 8:36
bwilhite16-Jan-08 8:36 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
led mike16-Jan-08 10:16
led mike16-Jan-08 10:16 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
bwilhite16-Jan-08 21:09
bwilhite16-Jan-08 21:09 
GeneralRe: VS 2005 doesn't give me an .exe file when I build a C++ project Pin
bwilhite16-Jan-08 8:17
bwilhite16-Jan-08 8:17 
I have comodo firewall and defense installed on my machine, and if I put the level up high enough, then it tells me that HelloWorld.exe is being executed when I run through the debugger, but after that it's not there...I don't know if that provides a clue or not...here's the build log:

Command Lines


Creating temporary file "c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000138963340.rsp" with contents
[
/Od /D "WIN32" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /FD /EHa /MDd /Yu"stdafx.h" /Fp"Debug\HelloWorld2.pch" /Fo"Debug\\" /Fd"Debug\vc80.pdb" /W3 /c /Zi /clr /TP /FU "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll" /FU "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll" /FU "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.XML.dll"

".\HelloWorld2.cpp"

".\AssemblyInfo.cpp"
]
Creating command line "cl.exe @"c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000138963340.rsp" /nologo /errorReport:prompt"
Creating temporary file "c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000238963340.rsp" with contents
[
/Od /D "WIN32" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /FD /EHa /MDd /Yc"stdafx.h" /Fp"Debug\HelloWorld2.pch" /Fo"Debug\\" /Fd"Debug\vc80.pdb" /W3 /c /Zi /clr /TP /FU "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.dll" /FU "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll" /FU "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.XML.dll"

".\stdafx.cpp"
]
Creating command line "cl.exe @"c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000238963340.rsp" /nologo /errorReport:prompt"
Creating command line "rc.exe /d "_UNICODE" /d "UNICODE" /fo"Debug/app.res" ".\app.rc""
Creating temporary file "c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000538963340.rsp" with contents
[
/OUT:"C:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\Debug\HelloWorld2.exe" /INCREMENTAL /MANIFEST /MANIFESTFILE:"Debug\HelloWorld2.exe.intermediate.manifest" /DEBUG /ASSEMBLYDEBUG /PDB:"c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\debug\HelloWorld2.pdb" /MACHINE:X86 /FIXED:No ".\Debug\AssemblyInfo.obj"

".\Debug\HelloWorld2.obj"

".\Debug\stdafx.obj"

".\Debug\app.res"
]
Creating command line "link.exe @"c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000538963340.rsp" /NOLOGO /ERRORREPORT:PROMPT"
Creating temporary file "c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000638963340.rsp" with contents
[
/outputresource:"..\debug\HelloWorld2.exe;#1" /manifest

".\Debug\HelloWorld2.exe.intermediate.manifest"
]
Creating command line "mt.exe @"c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\RSP00000638963340.rsp" /nologo"
Creating temporary file "c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\BAT00000738963340.bat" with contents
[
@echo Manifest resource last updated at %TIME% on %DATE% > ".\Debug\mt.dep"
]
Creating command line """c:\Documents and Settings\Brandon Wilhite\Desktop\Auxiliary Projects\WindowsServiceProofOfConcept\HelloWorld2\Debug\BAT00000738963340.bat"""

Output Window


Compiling...
stdafx.cpp
Compiling...
HelloWorld2.cpp
AssemblyInfo.cpp
Generating Code...
Compiling resources...
Linking...
Embedding manifest...
GeneralMarshal a struct to unmanaged memory Pin
Member 412487316-Jan-08 6:53
Member 412487316-Jan-08 6:53 
GeneralRe: Marshal a struct to unmanaged memory Pin
led mike16-Jan-08 7:54
led mike16-Jan-08 7:54 
GeneralRe: Marshal a struct to unmanaged memory Pin
Member 412487316-Jan-08 8:03
Member 412487316-Jan-08 8:03 
GeneralRe: Marshal a struct to unmanaged memory Pin
led mike16-Jan-08 10:27
led mike16-Jan-08 10:27 
AnswerRe: Marshal a struct to unmanaged memory Pin
George L. Jackson17-Jan-08 9:50
George L. Jackson17-Jan-08 9:50 
GeneralRe: Marshal a struct to unmanaged memory Pin
Member 412487318-Jan-08 2:45
Member 412487318-Jan-08 2:45 
GeneralCall ATL Com dll function in Managed C++ Pin
Rahul.RK16-Jan-08 0:30
Rahul.RK16-Jan-08 0:30 
GeneralRe: Call ATL Com dll function in Managed C++ Pin
led mike16-Jan-08 5:37
led mike16-Jan-08 5:37 
GeneralRe: Call ATL Com dll function in Managed C++ Pin
Mark Salsbery16-Jan-08 7:24
Mark Salsbery16-Jan-08 7:24 
GeneralRe: Call ATL Com dll function in Managed C++ Pin
led mike16-Jan-08 7:55
led mike16-Jan-08 7:55 
QuestionProblem with InternalsVisibleToAttribute and inter-assembly class members access Pin
Abix15-Jan-08 4:25
Abix15-Jan-08 4:25 
GeneralRe: Problem with InternalsVisibleToAttribute and inter-assembly class members access Pin
led mike15-Jan-08 4:37
led mike15-Jan-08 4:37 
GeneralRe: Problem with InternalsVisibleToAttribute and inter-assembly class members access [modified] Pin
Abix15-Jan-08 5:01
Abix15-Jan-08 5:01 
GeneralVisual c++ Net application Deployment Pin
mikobi14-Jan-08 19:32
mikobi14-Jan-08 19:32 
GeneralRe: Visual c++ Net application Deployment Pin
led mike15-Jan-08 4:40
led mike15-Jan-08 4:40 
GeneralTo Load Image Pin
mikobi14-Jan-08 4:22
mikobi14-Jan-08 4:22 
GeneralRe: To Load Image Pin
Paul Conrad25-Jan-08 16:01
professionalPaul Conrad25-Jan-08 16:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.