3

我在尝试使用我的类型提供程序时遇到“无法加载文件或程序集......系统找不到指定的文件”错误。

该错误出现在构建消费应用程序时,但在构建之前并未在 Visual Studio 中显示为“红色波浪”。

我在下面复制了我的 TP,但问题发生在Database.listDbs调用内部,我强烈怀疑问题不是下面的代码,而是我如何打包依赖项。

我调用了 Microsoft.Azure.DocumentDB 包,该包又依赖于 Newtonsoft.Json。这是找不到的 Newtonsoft.Json 包。我正在使用 Paket 来管理依赖项并进行重定向。

完整代码(包括所有 paket 文件)在 github 上:https ://github.com/stewart-r/AzureDocumentDbTypeProvider/tree/dependency-issue

我发现这个问题看起来非常相似,但解决方案没有任何区别。

我的TP代码如下:

namespace ProviderImplementation

open ProviderImplementation.ProvidedTypes
open Microsoft.FSharp.Core.CompilerServices
open System.Reflection
open System
open Config
open Database

[<TypeProvider>]
type public DocumentDbTypeProvider(config: TypeProviderConfig) as this = 
    inherit TypeProviderForNamespaces()

    let thisAssembly = Assembly.GetExecutingAssembly()
    let docDbType = ProvidedTypeDefinition(thisAssembly,namespaceName,"DocumentDbTypeProvider", baseType = Some typeof<obj>)

    let initFn (typeName : string) (args : obj []) = 
        let acProvidedType = ProvidedTypeDefinition(thisAssembly, namespaceName, typeName, baseType = Some typeof<obj>)
        acProvidedType.AddMember(ProvidedConstructor(parameters = [], InvokeCode = (fun args -> <@@ null @@>)))

        let getDbProperties () = 
            Database.listDbs (args.[0] :?> string) (args.[1]:?> string)
            |> List.map(fun d -> new ProvidedProperty(d.Name, typeof<string>, IsStatic = true, GetterCode = (fun _ -> <@@ "Test db name" @@>)))
        acProvidedType.AddMembers(getDbProperties())
        acProvidedType

    let parameters = 
        [ ProvidedStaticParameter("accountEndPointUri", typeof<string>, String.Empty)
          ProvidedStaticParameter("accountKey", typeof<string>, String.Empty)]

    do
        docDbType.DefineStaticParameters(parameters,initFn)
        this.AddNamespace(namespaceName,[docDbType])

[<TypeProviderAssembly>]
do ()
4

2 回答 2

2

这是一个绑定重定向问题 - 您需要在类型提供程序中处理BR。或者,您可以将依赖项限制为直接依赖项所需的最低版本,例如 DocumentDB。

于 2016-07-18T08:16:20.597 回答
0

您是否尝试过确保您的“TP 依赖项位于 TP 本身所在的同一文件夹中”?

听起来您遇到了与此答案中描述的相同的问题: https ://stackoverflow.com/a/33889287/371698 (来自此答案的引用)

于 2016-07-18T04:07:41.943 回答