2016-02-18 7 views
0

я следовал инструкции на https://dotnet.github.io/getting-started/ я установил .NET Сердечник на ОС Windows 8.1 и выполняется в пустую папку:Невозможно запустить приложение по умолчанию ядро ​​.NET

dotnet new 
dotnet restore 
dotnet run 

пакеты были загружены, приложение компилируется , но исполнение закончилось с Исключением.

Необработанное исключение: System.IO.FileNotFoundException: Не удалось загрузить файл или сборку 'System.Runtime, Version = 4.1.0.0, культура = нейтральной, PublicKeyToken = b03f5f7f11d50a3a' или один из его зависимостей.

В чем может быть проблема?

ответ

0

Я попытался воспроизвести на моем Windows 8.1, и он работает.

Какую версию dotnet cli вы используете (запустить dotnet -version)? Последний инсталлятор можно найти here

Вы также можете попробовать запустить с использованием подробного вывода с поддержкой: DotNet --verbose запустить

My (рабочий) выход ниже. Вы видите какую-то разницу?

Running C:\Program Files\dotnet\bin\dotnet-build.exe "--output" "C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614" "--temp-output 
" "C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614" "--framework" "DNXCore,Version=v5.0" "--configuration" "Debug" "C:\Projects\ 
temp" 
Process ID: 21564 
Project temp (DNXCore,Version=v5.0) will be compiled because expected outputs are missing. 
C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614\Debug\dnxcore50\temp.dll 
C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614\Debug\dnxcore50\temp.pdb 

Running C:\Program Files\dotnet\bin\dotnet-compile.exe "--framework" "DNXCore,Version=v5.0" "--configuration" "Debug" "--output" "C:\Projects\tem 
p\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614" "--temp-output" "C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614" "C:\Project 
s\temp" 
Process ID: 12284 
Compiling temp for DNXCore,Version=v5.0 
Running C:\Program Files\dotnet\bin\dotnet-compile-csc.exe "@C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614\dotnet-compile.rsp" 

Process ID: 17832 
Running C:\Program Files\dotnet\bin\csc.exe "-noconfig" "@C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614\dotnet-compile-csc.rsp 
" 
Process ID: 3936 
C:\Projects\temp\project.json(8,32): warning NU1007: Dependency specified was NETStandard.Library >= 1.0.0-rc2-23727 but ended up with NETStandar 
d.Library 1.0.0-rc2-23804. 

Compilation succeeded. 
    1 Warning(s) 
    0 Error(s) 

Time elapsed 00:00:04.5670414 


Running C:\Projects\temp\bin\.dotnetrun\d2d6b16263e145a0aa7245c62ff19614\Debug\dnxcore50\temp.exe 
Process ID: 7480 
Hello World!