Windows x64 で実行されているコンソール アプリケーション (実際には Service Fabric ステートフル サービス) があります。
現在.csproj
、project.json
ファイルがあります(簡潔にするために他の依存関係は省略されています):
{
"dependencies": {
"Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final"
},
"frameworks": {
"net461": {
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027"
}
}
},
"runtimes": {
"win-x64": { }
}
}
Kestrel の実行に問題があります - IWebHost.Startlibuv.dll
が見つからない例外をスローします ( Unable to load DLL 'libuv': The specified module could not be found
)。
.Net 4.6.1でKestrelを使用してASP.Netコアを実行する適切な方法は何ですか(.Netコアは私にとってオプションではありません)? libuv パッケージは win7-* のみを対象としているようです...なぜですか? 何を変更すればよいですか?
Windows 10 で VS2015 を使用しています。