首先发布并完成C#,DNX,ASP.net noob所以请你好。
我在使用DNX 4.5.1构建ASP.net 5.0项目时遇到问题。我的project.json文件包含以下内容:
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"tooling": {
"defaultNamespace": "PingTest1"
},
"dependencies": {
"Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final",
"Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-rc1-final",
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
"Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
"Microsoft.AspNet.Tooling.Razor": "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.FileProviderExtensions" : "1.0.0-rc1-final",
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final",
"System.Net.NetworkInformation": "4.1.0-beta-23516",
"System.Net.Utilities": "4.0.0-beta-23516"
},
"commands": {
"web": "Microsoft.AspNet.Server.Kestrel"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
},
"exclude": [
"wwwroot",
"node_modules",
"bower_components"
],
"publishExclude": [
"node_modules",
"bower_components",
"**.xproj",
"**.user",
"**.vspscc"
],
"scripts": {
"prepublish": [
"npm install",
"bower install",
"gulp clean",
"gulp min"
]
}
}
“dnu restore”安装应有的一切。但是当我运行“dnu build”时,我得到了这两个错误:
error NU1002: The dependency System.Net.Utilities 4.0.0-beta-23516 in project PingTest1 does not support framework DNX,Version=v4.5.1.
DNXCore,Version=v5.0 error CS1061: 'Ping' does not contain a definition for 'Send' and no extension method 'Send' accepting a first argument of type 'Ping' could be found (are you missing a using directive or an assembly reference?)
作为一个完整的菜鸟,我不知道如何纠正这一点,谷歌搜索没有找到任何答案。任何帮助将不胜感激。
我的完整源代码可以在这里找到:https://github.com/00101010b/PingTest1
答案 0 :(得分:1)
解决方案是从project.json文件中删除以下行:
"dnx451": {},
从Terminal.app按顺序运行以下命令:
dnvm upgrade -r coreclr
dnu restore
dnu build
最后我将部分代码替换为使用Ping()。SendPingAsync()。
这解决了构建问题。但是,我仍然遇到ping IP地址的问题......我将很快发布一个关于它的新线程。
非常感谢。