HOW TO use vbc compiler from NET 1.1 SDK(pure) to make compact framework Applicattion

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

Guest

onl
/netcf switch don't make correct app

how to use /sdkpath
where is placed compact framework SDK ?
 
DEMO ha scritto:
only
/netcf switch don't make correct app.

how to use /sdkpath ?
where is placed compact framework SDK ?

You have to extract files from the CF .cab files for the right
processort type.

I.e. for the ARM you get in the CF path the file netcf.core.ppc3.ARM.cab
for PPC and netcf.all.wce4.ARMV4.cab for WinCE.

The extracted files have bizarre names, such as SYSTEM~1.019

There are some web site that tell you the right name of the file, but
you can also find it out by yourself using Reflector.

Add all the extracted files to Reflector, look at the right file name
for each one, and rename it.

I.e.: SYSTEM~1.019 would be System.Net.IrDA.dll

When you renamed all files, you specifies this path as the /sdkpath

Note that VS.net as some additional files not included in the standart
CF, such as the SqlClient for connecting to SQLserver DB.

Bye.
 
Zanna ha scritto:
Note that VS.net as some additional files not included in the standart
CF, such as the SqlClient for connecting to SQLserver DB.

Note also that not all the extracted files have to be renamed.
 
Back
Top