Hello,

Could someone help me, I don't know how to build project with Visual C++ toolkit 2003, that project has made with Visual Studio .NET 2003 or is this generally possible.....
Any suggestions?

Recommended Answers

All 5 Replies

Hello,

Could someone help me, I don't know how to build project with Visual C++ toolkit 2003, that project has made with Visual Studio .NET 2003 or is this generally possible.....
Any suggestions?

If you mean, you want to build a .vcproj file or .sln file from the Visual Toolkit, you can't do that.
But it maybe worth trying

cl *.cpp

or

cl *.c

thanks........................done..............How to build with Visual Studio 2005 Command Prompt................?

thanks........................done..............How to build with Visual Studio 2005 Command Prompt................?

If the folder where you installed VCExpress is

D:\Program Files\Microsoft Visual Studio 8\Common7\IDE

and the Solution you want to build from the command line is

E:\Test\Test.sln

This will build your solution in the Release mode from the command line.

cd /D E:\Test
set path=D:\Program Files\Microsoft Visual Studio 8\Common7\IDE;%PATH%
VCExpress.exe Test.sln /build "Release"
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.