如何在VS 2017RC中添加对System.EnterpriseServices的引用

时间:2017-02-07 12:00:33

标签: .net asp.net-core .net-core visual-studio-2017

如何在VS2017RC中使用模板ASP.NET Core Web Application(.NET Framework)创建的项目中添加对System.EnterpriseServices的引用?正如您在屏幕截图中看到的,没有选项可以添加System。*程序集。

enter image description here

1 个答案:

答案 0 :(得分:3)

我设法在VS2017 RC中的ASP.NET核心Web应用程序(.NET Framework)中添加System.*程序集。我不确定是否还有其他更好的解决方案。

  1. 打开项目后,转到查看 - >对象浏览器
  2. 选择您要定位ASP.NET Core Web Application的.net框架
  3. 搜索System.EnterpriseServices
  4. 您将获得一个结果,在右侧,您将获得有关装配的详细信息。单击超链接System.EnterpriseServices
  5. 您将看到装配的物理路径
  6. 复制该路径,转到Add Reference窗口并浏览该路径。
  7. 它会为您的项目添加System.EnterpriseServices dll。
  8. enter image description here

    在添加引用时,它将本地计算机路径添加到.csproj文件。部署时需要小心。