will debug build run on .net redistributable ?

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

I have a .net debug build. Will it suffice to put the .net
redistributable on the target machine, or as it was back in vs6 days,
the target machine should have full blown licencsed visual studio.net
?

Thanks!
 
The redistrubuable is enough. No need to have VS.NET on the production box,
just like you didn't need VS 6.0 on the production box for VB 6.0.
 
Alex said:
I have a .net debug build. Will it suffice to put the .net
redistributable on the target machine, or as it was back in vs6 days,
the target machine should have full blown licencsed visual studio.net
?

The debug build only disables JIT optimization and PDB-Files are generated.
It uses the same runtime-environment, so no special files or license is
needed. Only install .NET framework


--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/tools/leakfinder.asp
 
Back
Top