tags:

views:

185

answers:

1

Do I need to deploy System.Data.SQLite.xml with the System.Data.SQLite dlls?

The xml gets included when referencing the dlls copied to the bin folder.

+4  A: 

In a release package, no. The XML file contains all of the inline documentation of classes and methods in the assembly and has no value to the end user. While developing your application, it allows Visual Studio to show descriptive comments to the API through IntelliSense.

Jørn Schou-Rode