dotgnu-pnet
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Pnet-developers] Re:Pocket PC Apps


From: Fabio Martins
Subject: Re: [Pnet-developers] Re:Pocket PC Apps
Date: Thu, 14 Oct 2004 19:00:02 -0300

Andrew,

I unpack the needed processor libraries of the NCF 1.0 SP2 
(netcf.core.ppc3.ARM.cab) and and I saw several files with 
strange names (for example: System~1.018; Mscore~1.002,
and so on).
Is there some documentation about these files?
Does the css.exe (.NET Framework) compiler build PPC .EXEs 
(ARM, MIPS, SH3)?
Can I build PPC .EXEs with PNET without MS NCF 1.0 SP2?

Thank you!
Fabio Martins

> From:          "Andrew Revvo" <address@hidden>
> To:            <address@hidden>
> Subject:       [Pnet-developers] Re:Pocket PC Apps
> Date:          Fri, 15 Oct 2004 01:29:54 +0400

> 
> Fabio,
> 
> Download NET Compact Framework 1.0 SP2 Redistributable:
> http://www.microsoft.com/downloads/details.aspx?FamilyID=359ea6da-fc5d-41cc-ac04-7bb50a134556&displaylang=en
> 
> Unpack the needed processor libraries and link your software with these 
> dlls.
> Note. Do not link with stdlib.
> 
> This is an example of NAnt target (I use Microsoft Net 1.1 command line 
> compiler),
> but I think that you may port it to PNET without any problems.
> 
> --
>    <target name="build.pocketpc.netcfXX">
>         <mkdir dir="${build.output}" />
> 
>         <property name="netcf.path" value="C:/Tools/Dev/C#/netcf" />
>         <property name="net11.path" 
> value="C:/Windows/Microsoft.NET/Framework/v1.1.4322" />
>         <exec program="${net11.path}\csc.exe">
>             <arg value="/target:winexe" />
>             <arg value="/out:${build.output}/${build.name}.exe" />
>             <arg value="/doc:${build.output}/${build.name}.doc.xml" />
>             <arg value="/debug" if="${build.debug}" />
>             <arg value="/optimize" />
>             <arg value="/define:${build.define}" />
>             <arg value="/nostdlib" />
>             <arg value="/noconfig" />
>             <arg value="/reference:${netcf.path}\Mscorlib.dll" />
>             <arg value="/reference:${netcf.path}\System.dll" />
>             <arg value="/reference:${netcf.path}\System.Windows.Forms.dll" 
> />
>             <arg value="Program.cs" />
>         </exec>
>     </target>
> --
> 
> Andrew Revvo 
> 
> _______________________________________________
> Pnet-developers mailing list
> address@hidden
> http://dotgnu.org/mailman/listinfo/pnet-developers
> 
> 
> 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]