在 ASP.NET 5 Class 库中找不到 System.Math 命名空间
Can't find System.Math namespace in ASP.NET 5 Class Library
我正在尝试构建一个 ASP.NET 5 Class 库,它使用了 System.Math
中的一些方法,即 System.Math.Round(...)
、System.Math.Sqrt(...)
等等
当我尝试构建它时。我收到以下错误:
Error CS0103 The name 'Math' does not exist in the current context ProjectName.ASP.NET Core 5.0 Class1.cs
我在 project.json 文件中包含了一些包以修复与 System.Linq
和 System.Collections.Generic
相关的其他错误,但我无法修复包含 System.Math
.
在哪里可以找到它?
这是我的 project.json 文件:
"version": "1.0.0-*",
"dependencies": {
},
"frameworks" : {
"aspnet50" : {
"dependencies": {
}
},
"aspnetcore50" : {
"dependencies": {
"System.Runtime": "4.0.20-beta-22416",
"System.Collections": "4.0.10-beta-22416",
"System.Linq": "4.0.0-beta-22416",
"System.Threading": "4.0.0-beta-22416"
}
}
}
添加对 System.Runtime.Extensions
的引用
使用Package Search查找包含特定类型的包
我正在尝试构建一个 ASP.NET 5 Class 库,它使用了 System.Math
中的一些方法,即 System.Math.Round(...)
、System.Math.Sqrt(...)
等等
当我尝试构建它时。我收到以下错误:
Error CS0103 The name 'Math' does not exist in the current context ProjectName.ASP.NET Core 5.0 Class1.cs
我在 project.json 文件中包含了一些包以修复与 System.Linq
和 System.Collections.Generic
相关的其他错误,但我无法修复包含 System.Math
.
在哪里可以找到它?
这是我的 project.json 文件:
"version": "1.0.0-*",
"dependencies": {
},
"frameworks" : {
"aspnet50" : {
"dependencies": {
}
},
"aspnetcore50" : {
"dependencies": {
"System.Runtime": "4.0.20-beta-22416",
"System.Collections": "4.0.10-beta-22416",
"System.Linq": "4.0.0-beta-22416",
"System.Threading": "4.0.0-beta-22416"
}
}
}
添加对 System.Runtime.Extensions
使用Package Search查找包含特定类型的包