Visual C++ .NET Express Beta 2
hi, does anyone know if there is a way to compile a script in this without making it compile using the .net framework, i am just trying to make a simple command prompt, the hello world project, but a computer cannot run it if it doesnt have .net framework 2.0 beta 2 which is what i have. So does anyone know how i can make it compile WITHOUT the framework, as it does not need it.
Thanks,
Flamez
Thanks,
Flamez
0
Comments
The .NET framework compiles the executable to an intermediate language (IL). When this executable is run, this IL language is passed to the .NET framework to be compiled to machine code. This process is passing the IL runtime to a JIT (just in time compiler).
If you want to use .NET tools, you must understand the requirements & limitations that are inherit with requiring a runtime environment
The other option is to look at a non runtime dependant C++ (eg.. Borland).
You are using the product regardless of using the graphical interface or not
I have only used VS.net and G++ comiler on Unix before.
I did a custom install of Visual Studio since I don't need most of the stuff it comes with (MSDN, Crystal Reports, .NET, remote debugging, etc.) and chose not to include the libraries for building .NET applications. It is possible.
-drasnor
This thread is explicitly talking about C++ express which to my knowledge only allows .NET
-drasnor