Changes in Microsoft Visual Studio 2005 Beta

B

bor_kev

Hi!

Now, I have to develop under Microsoft Visual Studio 2005 Beta, while
I used to develop under Visual C++ .NET. That means I have to migrate
all my former projects into this environment. The problem is that I
used to use unmanaged code and I notice that there are so many
syntax differences : For example the new compiler doesn't accept the
former pointer syntax :" string * ptr" but now "string ^", the same
for the STL libraries and so on... i go crazy!! :)

It will take me very much time if I have to make all these changes!!


My question is : How can Studio 2005 accept my former project without
I have to make changes please.


Sincerely.

bor_kev

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
C

Carl Daniel [VC++ MVP]

bor_kev said:
Hi!

Now, I have to develop under Microsoft Visual Studio 2005 Beta, while
I used to develop under Visual C++ .NET. That means I have to migrate
all my former projects into this environment. The problem is that I
used to use unmanaged code and I notice that there are so many
syntax differences : For example the new compiler doesn't accept the
former pointer syntax :" string * ptr" but now "string ^", the same
for the STL libraries and so on... i go crazy!! :)

You're talking about managed code, not unmanaged code.
It will take me very much time if I have to make all these changes!!


My question is : How can Studio 2005 accept my former project without
I have to make changes please.

Add /clr:blush:ldSyntax to the compiler command line options.

-cd
 
B

bor_kev

Hi !

I tried everywhere in Microsoft Visual Studio 2005 Beta(MVS 2005 Beta)
to put the option "/clr:blush:ldSyntax" but I didn't find it.

How can I add it please?

Sincerely

bor_kev

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top