我正在尝试将另一个解决方案(“Bar Solution”)中的项目(“Geometry”)的引用添加到另一个解决方案(“Foo Solution”)中。 Bar Solution中的任何项目(Geometry源代码的主页)都可以导入Geometry并使用它的功能没有问题;但是,当我将DLL添加到Foo Solution时,它导入正常,但是对象浏览器显示它不包含任何名称空间或类。
是否有人遇到此问题或以其他方式了解解决方案?我找不到任何有关SO或更多信息的信息,le Goog。
Foo解决方案的对象浏览器:
Bar's Solution Explorer:
Foo的一些代码试图使用“Geometry”:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Geometry; // Error: "The type or namespace name 'Geometry' could not be found
// (are you missing a using directive or an assembly reference?)"
namespace Lever
{
public partial class LeverGUI : Form
{
public LeverGUI()
{
InitializeComponent();
}
}
}