English 中文(简体)
TinyMCE .NET dll不能找到
原标题:TinyMCE .NET dll could not be found

我试图将Net TinyMCE dll列入我的项目。 我使用的法典是:

<%@ Register Assembly="Moxiecode.TinyMCE" Namespace="Moxiecode.TinyMCE.Web" tagprefix="tinymce" %>

我已经增加了项目参考文件的内容,我检查了我方的法典,以确保其正确。 我作了修改,以确保它有一条道路。

<Reference Include="Moxiecode.TinyMCE, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  <HintPath>binMoxiecode.TinyMCE.dll</HintPath>
  <SpecificVersion>False</SpecificVersion>
</Reference>

在我尝试建设我的项目时,我收到错误信息:

Could not load file or assembly file:///C:[ProjectPath]inMoxiecode.TinyMCE.dll or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)

我如何解决这一错误? 我已尝试开放和关闭VS2010。 添加和删除这一提法。 没有工作。


经过更多的研究,看来问题在于,我正在使用4.Net和TinyMCEs .Net dll没有强有力的名称。 基本上,它没有公用钥匙。 我如何解决这个问题?

最佳回答

我不敢肯定,如果能解决这个问题,但为了让你走近路,我认为你需要用<条码>开始(<>>>>>(或<条码>.

通往DLL的实际道路在哪里? 您是否尝试为诊断确定建筑产出水平()。 工具-> 备选办法...... -> Project and Solutions ->Building and Run

给你更多的信息?

为测试目的,尝试创建<代码>C:BinMoxiecode,并将DLL列入其中。 这是否解决这个问题? (在这种情况下,它是一个道路问题)。 如果不是的话,那可能是另一个令人误解的例外(cor或类似)。 [Edit: 本段提到的道路在Q被编辑之前是正确的]

最新情况:如果你有一个名字强大的项目,你的所有参考资料也必须有。 这是为了确保你的法典不会给它注入任何恶意。 你的唯一选择是:

  • Don t strongly sign your project [Bad]
  • Recompile the offending DLL yourself with an SNK [Good if you can get the source]
  • Get the developers of the DLL to build you one with an SNK [Good if you can get it to happen]
问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签