Jacky Luk <nospam@nospam. com> wrote:[color=blue]
> Can .NET Version 2002 produce win32 native code?[/color]
Well, ngen will do the JITting before runtime, but it still requires
the framework to run.
[color=blue]
> I'm engaged to a Direct3D project that requires win32[/color]
Jacky Luk <nospam@nospam. com> wrote:[color=blue]
> It's a matter of fact that our clients wouldn't allow us to install the
> framework on their machines.[/color]
In that case you basically can't use .NET. You can't run .NET
applications without the framework. I gather there's a program under
development to let you do that, but I'm not sure I see why a client
would allow you to install that but not the framework itself..
If you mean Visual Studio 2002, then yes, it can produce native Win32 code.
Tim
--
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at http://www.microsoft.com/info/cpyright.htm
Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
--------------------[color=blue]
>From: "Willy Denoyette [MVP]" <willy.denoyett e@pandora.be>
>References: <#dP2InjZDHA.25 20@TK2MSFTNGP09 .phx.gbl>
>Subject: Re: .NET Native Code
>Date: Tue, 19 Aug 2003 12:31:37 +0200
>Lines: 11
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
>Message-ID: <eJOkz0jZDHA.25 72@TK2MSFTNGP09 .phx.gbl>
>Newsgroups: microsoft.publi c.dotnet.genera l
>NNTP-Posting-Host: d5e01079.kabel. telenet.be 213.224.16.121
>Path: cpmsftngxa06.ph x.gbl!TK2MSFTNG P08.phx.gbl!TK2 MSFTNGP09.phx.g bl
>Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.genera l:104984
>X-Tomcat-NG: microsoft.publi c.dotnet.genera l
>
>Jacky Luk wrote:
>|| Can .NET Version 2002 produce win32 native code?
>|| I'm engaged to a Direct3D project that requires win32
>|| Thanks
>|| Jack
>
>Not sure what you mean with "requires win32", but only C++ can produce[/color]
native code not requireing the .NET runtime.[color=blue]
>
>Willy.
>
>
>[/color]
No, I mean VC++ the compiler (part of VS NET) is the only compiler able to produce native code not requiring the .NET runtime,
Visual studio is a development environment.
We will offer two options to deploy .NET applications without installing
..NET framework:
(1) a linker and mini-deployment tool that you can choose to link everything
together (except for mscorlib.dll) into a single EXE, and the tool also
automatically figures out all other dependent DLLs. (You can also choose not
to link assemblies together). A minimum set of CLR runtime is then included
and deployed (~6MB in size) with your application rather than the whole
thing. In this way, a typical windows application will be about 5 MB after
zip, one can simply unzip it onto another bare machine to run the
application. No entries will be added into the client machine's registry.
This scenario still uses CLR underneath, but only the required portion is
shipped, and there is no noticeable installation time.
(2) take one more step from (1), we will offer a native compiler to compile
the linked .NET assembly into x86 machine code. You can then ship the native
code with a runtime (~2MB) to any machines. This scenario does not use CLR
at all. The linking and compiling usually results in a 2.5MB increase on
file size. We will do more optiomization in the future to reduce the size.
Reflections and dynamic loading, etc. are supported. If .NET framework is
also available on the same machine, the native code also supports loading
and invoking external .NET assemblies (seperate DLLs which are still with
MSIL code).
I will post more info on our website (http://www.remotesoft.com) plus sample
code within the following 2 weeks, please visit our page,
Thanks,
Huihong
Remotesoft, Inc.
"Jacky Luk" <nospam@nospam. com> wrote in message
news:%23dP2InjZ DHA.2520@TK2MSF TNGP09.phx.gbl. ..[color=blue]
> Can .NET Version 2002 produce win32 native code?
> I'm engaged to a Direct3D project that requires win32
> Thanks
> Jack
>
>[/color]
Comment