从 .net 2.0 项目打开 .net 4.5 项目的 windows 形式时出现运行时错误
Runtime error while opening a windows form of a .net 4.5 project from .net 2.0 project
我有两个 .net 项目 solution.First 项目是 .net 2.0 windows forms 项目,第二个项目是 .net 4.5 windows forms project.I' m 从 .net 2.0 项目打开我的 .net 4.5 项目的 windows 形式。对于代码示例:
ReportManager.Form1 f1 = new ReportManager.Form1();
f1.Show();
它给出以下 运行 时间错误(ReportManager 是我的 .net 4.5 项目名称)
无法加载文件或程序集 'ReportManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' 或其依赖项之一。该系统找不到指定的文件。
欢迎任何建议。
来自评论 "Did try to convert and build my .NET 2.0 project and this error came "Interop 类型 'LOGkeeper.ManagerClass' 无法嵌入。请改用适用的界面。"
也许这有助于将项目从 .NET 2.0 向上迁移?
Interop type cannot be embedded
我有两个 .net 项目 solution.First 项目是 .net 2.0 windows forms 项目,第二个项目是 .net 4.5 windows forms project.I' m 从 .net 2.0 项目打开我的 .net 4.5 项目的 windows 形式。对于代码示例:
ReportManager.Form1 f1 = new ReportManager.Form1();
f1.Show();
它给出以下 运行 时间错误(ReportManager 是我的 .net 4.5 项目名称)
无法加载文件或程序集 'ReportManager, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' 或其依赖项之一。该系统找不到指定的文件。 欢迎任何建议。
来自评论 "Did try to convert and build my .NET 2.0 project and this error came "Interop 类型 'LOGkeeper.ManagerClass' 无法嵌入。请改用适用的界面。"
也许这有助于将项目从 .NET 2.0 向上迁移?
Interop type cannot be embedded