English 中文(简体)
我无法在我诉2010年一案中补充任何图书馆的回顾,而我的机器没有汇编这些内容。
原标题:I can not add any library refference in my vs2010 which is not compiled in my machine

我的诉2010年案,我面临一个棘手的问题。 在我试图增加一个没有通过我的机器编纂的集会时,我先拿黄色的外衣。 当我把来文方编成我的机器时,加上它用的是罚款。

我完全理解正在发生的情况。

问题回答

其中一个原因可能是净文本不匹配。 你试图增加这一提法的集会也必须汇编成册。 您的项目所针对的是净文本。

As the default .net version targeted by VS2010 is .net 4.0, some assemblies built for .net 2 or 3.5 would give this problem. But when compiling on your machine from source you are agin tergeting version 4 and its working fine.

还有一个可能性是,在建设项目房地产表格中选择Platform Target。 如果大会针对一个具体的万国邮联结构,那么你的项目也必须以同样为目标。





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

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 do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签