-
Notifications
You must be signed in to change notification settings - Fork 7
/
CF.html
34 lines (34 loc) · 1.25 KB
/
CF.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<title>MONO.html</title>
</head>
<body>
<h2>.NET Compact Framework Support
</h2>
Microsoft .NET Compact Framework is a subset of the .NET Assemblies and friends
geared towards running on PDA's and the like. Now, as near as I can tell, the
ONLY way to get a hold of these assemblies for your x86 development host is to
purchase Visual Studio .NET 2003. I did find a distributable package for
.NET CF on microsoft.com but it was only for the target platforms, none of which
I own. So while anyone with net access can code C# for free, it seems you have
to pony up for the .NET CF assemblies. Go figure.
<p>I did find, via Google, a document (NET_Compact_Framework.chm) that enumerated
for each class in .NET CF what was different from the full .NET. </p>
<h2>Prerequisites to Build
</h2>
<ul>
<li>Have .NET development tool and the .NET Compact Framework</li>
<li>have csc and friends in your PATH
</li>
<li>Have nmake<br>
</li>
</ul>
<h2>To Build</h2>
Check the LDIR path in makefile.nmake. In a command shell:
<pre> nmake -f makefile.nmake
</pre>
</body>
</html>