Portable console applications

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to write a console application which as a .exe will be portable to
another machine which doesn't have the .net framework installed. Is this
possible - or does even the simplest console.writeline command require the
..net framework?



Grateful for any advice
 
simonc said:
I want to write a console application which as a .exe will be portable to
another machine which doesn't have the .net framework installed. Is this
possible

No way.
- or does even the simplest console.writeline command require the
.net framework?

Yes.

Thorsten Doerfler
 
Simonc,

When you use a program language based on managed code you need forever the
framework.

However you can build with C++ in VS net 2003 programs which do not need the
framework.

Just in addition to Thorsten,

Cor
 
simonc said:
I want to write a console application which as a .exe
will be portable to another machine which doesn't have
the .net framework installed. Is this possible

No. The .NET Framework needs to be installed on the machine.
- or does even the simplest console.writeline command
require the .net framework?

It will require the .NET Framework. Choose another programming language
(like "old" unmanaged C++) instead of a .NET programming language.

More info:

<URL:http://www.google.de/[email protected]>
 
Back
Top