DLLs in INF file

  • Thread starter Thread starter Aris
  • Start date Start date
A

Aris

How can I instruct the DLL files to be copied in the
\Windows directory instead of the Files.Common directory
in a .inf file?

Thanks
 
Also, how can I include the 'en' directory that includes
the resource file for localization?

Thanks again
 
To add other directories and files to an .inf for cab generation, you might
do something like this:

[DestinationDirs]
Files.Win = 0,%CE2%
Files.Loc.En = 0,%InstallDir%\en

[Files.Win]
"my.dll",my.dll,,0x20000001

[Files.Loc.En]
"myloc.dll",myloc.dll,,0x20000001

If you look for ".inf file" in the index of the VS.NET 2003 documentation
you'll find good information on these.

Stan Adermann
Microsoft
NET Compact Framework

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "Aris" <[email protected]>
|
| Also, how can I include the 'en' directory that includes
| the resource file for localization?
|
| Thanks again
|
| >-----Original Message-----
| >How can I instruct the DLL files to be copied in the
| >\Windows directory instead of the Files.Common directory
| >in a .inf file?
| >
| >Thanks
| >.
| >
|
 
Back
Top