我在 VS2012 Winforms 应用程序项目中的程序集引用上收到此警告。在这种情况下,引用用于应用程序使用的 Infragistics 控件,这些控件位于 bin 文件夹中。
此问题已在以下链接中解决,但答案(“设置构建操作”属性)不起作用,因为 VS2012 中没有用于引用程序集的构建操作属性。
解决方法是什么?
我在 VS2012 Winforms 应用程序项目中的程序集引用上收到此警告。在这种情况下,引用用于应用程序使用的 Infragistics 控件,这些控件位于 bin 文件夹中。
此问题已在以下链接中解决,但答案(“设置构建操作”属性)不起作用,因为 VS2012 中没有用于引用程序集的构建操作属性。
解决方法是什么?
您可能指的是错误的大会。
您需要为位于文件夹中的程序集“设置构建操作” ,而不是从.Bin
references
转到解决方案资源管理器>展开Bin文件夹,右键单击发出警告的程序集,您应该能够设置构建操作
同样,它不是位于“参考”面板中的程序集,而是来自Bin文件夹
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.