我正在尝试构建一个ASP.NET 5类库,它使用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"
}
}
}