I'm using Paket to install RavenDB.Client, and a call to:
Raven.Client.Indexes.IndexCreation.CreateIndexes
in my code requires that System.ComponentModel.Composition is manually referenced. However, whenever I run paket update the reference is removed
Create an empty library and replace the class that's created with this
type Class1() =
member this.X = Raven.Client.Indexes.IndexCreation.CreateIndexes(System.Reflection.Assembly.GetExecutingAssembly(), null)
and reference System.ComponentModel.Composition
You may have to paket update a couple of times to see the problem
I'm using Paket to install RavenDB.Client, and a call to:
in my code requires that System.ComponentModel.Composition is manually referenced. However, whenever I run
paket updatethe reference is removedCreate an empty library and replace the class that's created with this
and reference System.ComponentModel.Composition
You may have to
paket updatea couple of times to see the problem