How to distribute required *.dll files with your application?
How to distribute required *.dll files with your application ?
I want to include System.Data.开发者_Python百科SQLite.DLL file
To add an assembly to your setup project:
- In the File System View of your Setup Project, click on Application Folder.
- Right click in the right pane and choose Add>>Assembly.
- Navigate to your System.Data.SQLite.dll and click OK.
System.Data.SQLite.dll should now be part of your project and install when you run it.
精彩评论