gpt4 book ai didi

c# - 使用 WCF 找不到构建和引用的程序集

转载 作者:行者123 更新时间:2023-11-30 16:55:12 24 4
gpt4 key购买 nike

背景

我有一个支持 WCF 的项目 MyService,它引用了项目 MyModel 中的一组模型并引用了一个正在运行的服务 http://example .com/endpoint.svc。所有三个项目都在同一个解决方案中。

问题

当我在 MyService 项目中编辑服务引用设置时,出现以下错误:

Custom tool warning: The assembly 'Namespace.MyModel' could not be found. Ensure that the assembly is referenced. If the assembly is part of the current development project, ensure that the project has been built.

程序集已构建并被引用。

这会导致 WCF 生成与 MyModel 中现有类冲突的其他类的问题。

尝试过的解决方案

这个问题似乎与 this MSDN forum thread 中讨论的问题相似但是建议的解决方案(相当于重新启动 Visual Studio 和服务)不起作用。

我还尝试删除并重新添加引用,另外还结合了 Visual Studio 重启。

长话短说

如何解决 WCF 无法看到程序集的问题?


附加信息

服务引用设置

服务引用设置设置如下:

  • Client

    • Address: http://example.com/endpoint.svc
    • Access level for generated classes: Public
    • Allow generation of asynchronous operations: checked and Generate task-based operations
  • Data Type

    • Always generate message contracts: unchecked
    • Collection type: System.Array
    • Dictionary collection type: System.Collections.Generic.Dictionary
    • Reuse types in referenced assemblies: checked and Reuse types in all referenced assemblies

Visual Studio

我正在使用 Visual Studio 2013 Pro Update 4 (12.0.31101.00 Update 4)

项目目标

所有目标都是 x64

最佳答案

问题似乎出在 Visual Studio 在后台使用 x86 版本的 svcutil 而不是项目内置的 x64。

手动运行 svcutil 产生期望的结果:

svcutil ^
/reference:../bin/Namespace.MyModel.dll ^
/out:Reference.cs ^
http://example.com/endpoint.svc?wsdl ^
/namespace:"*,Namespace.MyService"

关于c# - 使用 WCF 找不到构建和引用的程序集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29792276/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com