This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
I am publishing a wpf web application, and when it installs, it gives the error that it needs npgsql 1.0.0.0 installed in the GAC. Am I missing a configuration option? Why would it care about postgresql, since application doesnt use it. Thanks. |
|
|
The reason it is interested in Npgsql is that LightSpeed is statically linked to all the database providers (and to other DLLs like memcached or Lucene), so the dependency analysis throws up Npgsql even though that DLL will never actually be referenced in your app. In order to get around this, go into the project properties Publish tab, and click the Application Files button. For the DLLs that you don't need, change their Publish Status to Exclude, and re-publish. Your application should now install successfully. |
|