0

Mac の指示に従って、dnvm、coreclr をインストールしました。

http://docs.asp.net/en/latest/getting-started/installing-on-mac.html

リストを呼び出すと

peteisace$:    dnvm list

Active Version              Runtime Arch OperatingSystem Alias
------ -------              ------- ---- --------------- -----
       1.0.0-beta6          mono         linux/darwin    
   *   1.0.0-beta7-12302    coreclr x64  darwin          
       1.0.0-beta7-12302    mono         linux/darwin    default

dnxcore50がインストールされているようです...

ただし、復元、ビルド、実行しようとしても、coreclr では何も起こりません。Enter キーを押すのと同じです。何もしようとしない:

peteisace$    dnu restore
peteisace$

あるコマンドをビルド/実行/実行しようとしても同じです:

peteisace$    dnx . run
peteisace$

そのため、mono を使用してアプリケーションをビルドしようとすると、次のようになります。

 peteisace$    dnvm use 1.0.0-beta7-12302 -r mono
 peteisace$    System.InvalidOperationException: The current runtime target framework is not compatible with 'sampleConsole'.

Current runtime target framework: 'DNX,Version=v4.5.1 (dnx451)'
 Version:      1.0.0-beta7-12302
 Type:         Mono
 Architecture: x64
 OS Name:      Darwin

どんな提案でも大歓迎です。coreclr が正しくインストールされていることを確認する方法がわかりません。ランタイム ディレクトリが設定されます。

$peteisace ls -l ~/.dnx/runtimes/dnx-coreclr-darwin-x64.1.0.0-beta7-12302/
/Users/peteisace/.dnx/runtimes/dnx-coreclr-darwin-x64.1.0.0-beta7-12302/:
total 8
drwxr-xr-x  108 peteisace  peteisace  3672 Aug  4 09:29 bin
-rw-r--r--    1 peteisace  peteisace   725 Aug  4 09:55 dnx-coreclr-darwin-x64.nuspec
drwxr-xr-x    3 peteisace  peteisace   102 Aug  4 09:29 package
4

2 に答える 2

0

あなたは正しいコマンドを実行しています。Darwin/Linux CoreCLR の dnx はまだ非常に壊れています。

最新の dnx ビルドを使用してバグに遭遇した場合は、dnx チームの GitHub リポジトリで問題を報告することで、運が良くなる可能性があります。

GitHub の DNX

于 2015-08-11T23:44:21.573 に答える