找不到元数据文件 'E:\MyProject\Core-Angular\Core-Angular.Common\bin\Debug\netstandard1.6\Core-Angular.Common.dll'
Metadata file 'E:\MyProject\Core-Angular\Core-Angular.Common\bin\Debug\netstandard1.6\Core-Angular.Common.dll' could not be found
我在我的项目中使用 class 库。但是当我重建项目时,它显示了这个错误:
Severity Code Description Project File Line Suppression State
Error E:\MyProject\Core-Angular\Core-Angular.DomainClass\error CS0006: Metadata file 'E:\MyProject\Core-Angular\Core-Angular.Common\bin\Debug\netstandard1.6\Core-Angular.Common.dll' could not be found CoreAngular.DomainClass C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Common.Targets 262
我用 Add Refrence
添加 class 库并将其添加到 Project.json
但它也显示错误。
参考:
有什么问题吗?
我是这样做的:
A : 我右键单击我的项目,但找不到 Configuration
.
B :
* Clean every project individually (Right click the project -> Clean).
* Rebuild every project individually (Right click the project -> Rebuild).
* Rebuild the startup project (Right click the project -> Rebuild).
看来您使用的是相关工具集的旧版本。如今,开发 .NET Core 应用程序只有 2 个主要选择:
- 对比 2017
- VSCode
VS 2015 将不再受支持,您不能使用更新的 SDK。结束了,正式宣布 VS 2015 将不再针对 .NET Core 进行更新。
我在我的项目中使用 class 库。但是当我重建项目时,它显示了这个错误:
Severity Code Description Project File Line Suppression State Error E:\MyProject\Core-Angular\Core-Angular.DomainClass\error CS0006: Metadata file 'E:\MyProject\Core-Angular\Core-Angular.Common\bin\Debug\netstandard1.6\Core-Angular.Common.dll' could not be found CoreAngular.DomainClass C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Common.Targets 262
我用 Add Refrence
添加 class 库并将其添加到 Project.json
但它也显示错误。
参考:
有什么问题吗?
我是这样做的:
A : 我右键单击我的项目,但找不到 Configuration
.
B :
* Clean every project individually (Right click the project -> Clean).
* Rebuild every project individually (Right click the project -> Rebuild).
* Rebuild the startup project (Right click the project -> Rebuild).
看来您使用的是相关工具集的旧版本。如今,开发 .NET Core 应用程序只有 2 个主要选择:
- 对比 2017
- VSCode
VS 2015 将不再受支持,您不能使用更新的 SDK。结束了,正式宣布 VS 2015 将不再针对 .NET Core 进行更新。