C # SQLite: do I need to deploy System.Data.SQLite.xml?

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

xml is included when linking to DLLs copied to the bin folder.

+4
source share
1 answer

There is no release package. The XML file contains all the built-in documentation of classes and methods in the assembly and does not matter to the end user. When developing your application, it allows Visual Studio to display descriptive comments on the API through IntelliSense.

+6
source

All Articles