You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NuGet nuspec allow to specify list of files that should be added to consumer project references (subset of files in lib folder), but paket.template does not support it now.
We could not reference RProvider.DesignTime.dll because in this case we have no time to register AssemblyResolve event handler to redirect binding to RDotNet.dll. More details are here.
NuGet nuspec allow to specify list of files that should be added to consumer project references (subset of files in
lib
folder), butpaket.template
does not support it now.We need such functionality for Type Providers.
For example
RProvider
:https://github.com/BlueMountainCapital/FSharpRProvider/blob/master/nuget/RProvider.nuspec#L21-L24
Package contains 5 assemblies:
RProvider.dll
RProvider.DesignTime.dll
RProvider.Runtime.dll
RProvider.Server.exe
FSharp.Core.dll
but only two should be referenced:
RProvider.dll
RProvider.Runtime.dll
We could not reference
RProvider.DesignTime.dll
because in this case we have no time to registerAssemblyResolve
event handler to redirect binding toRDotNet.dll
. More details are here.The same situation is in
DynamicsCRMProvider
I'm working on now.fsprojects/DynamicsCRMProvider#5
Would be nice to support this case in Paket. // @mavnn @forki
The text was updated successfully, but these errors were encountered: