4

我在 VS2012 Winforms 应用程序项目中的程序集引用上收到此警告。在这种情况下,引用用于应用程序使用的 Infragistics 控件,这些控件位于 bin 文件夹中。

此问题已在以下链接中解决,但答案(“设置构建操作”属性)不起作用,因为 VS2012 中没有用于引用程序集的构建操作属性。

VS2005:程序集“<程序集>”被错误地指定为文件。

解决方法是什么?

4

2 回答 2

2

您可能指的是错误的大会。

您需要为位于文件夹中的程序集“设置构建操作” ,而不是从.Binreferences

转到解决方案资源管理器>展开Bin文件夹,右键单击发出警告的程序集,您应该能够设置构建操作

同样,它不是位于“参考”面板中的程序集,而是来自Bin文件夹

于 2014-09-12T07:13:57.470 回答
0

Have you tried removing the references, saving the solution and exiting Visual Studio - then re-opening the solution and re-adding the references?

The problem is almost certainly lurking in the project file (.csproj if this is a C# app) if you fancy opening it up in a text editor and having a look - might also help if you were to paste it here.

Alternatively, have you tried recreate the project from scratch? May be a quicker solution than trying to work out what's happened.

于 2013-10-11T14:07:20.573 回答