Я не могу собрать и запустить свой проект с помощью DotNet Run - PullRequest
0 голосов
/ 27 мая 2019

Мне нужно запустить свой проект без визуальной студии.Так что я прочитал, что это может быть запущено через команду dotnet.Но когда я пытаюсь запустить его так - используя

dotnet run --project ProjectName.csproj

, я получаю эти ошибки.

 C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : error NU1100: Unable to resolve 'Microsoft.VisualStudio.Web.CodeGeneration.Tools (>= 2.0.2)' for '.NETCoreApp,Version=v2.2'.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : warning NU1603: RemotePcWeb depends on Microsoft.AspNetCore.All (>= 2.0.5) but Microsoft.AspNetCore.All 2.0.5 was not found. An approximate best match of Microsoft.AspNetCore.All 2.2.0 was resolved.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : warning NU1603: RemotePcWeb depends on Microsoft.NETCore.App (>= 2.0.0) but Microsoft.NETCore.App 2.0.0 was not found. An approximate best match of Microsoft.NETCore.App 2.2.0 was resolved.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : error NU1100: Unable to resolve 'Microsoft.jQuery.Unobtrusive.Ajax (>= 3.2.6)' for '.NETCoreApp,Version=v2.0'.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : error NU1100: Unable to resolve 'Microsoft.VisualStudio.Web.CodeGeneration.Design (>= 2.0.2)' for '.NETCoreApp,Version=v2.0'.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : error NU1100: Unable to resolve 'Newtonsoft.Json (>= 12.0.2)' for '.NETCoreApp,Version=v2.0'.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : error NU1100: Unable to resolve 'System.Drawing.Common (>= 4.5.1)' for '.NETCoreApp,Version=v2.0'.
C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj : error NU1100: Unable to resolve 'ZKWeb.System.Drawing (>= 4.0.1)' for '.NETCoreApp,Version=v2.0'.
C:\Program Files\dotnet\sdk\2.2.107\NuGet.targets(114,5): error : Value cannot be null. [C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj]
C:\Program Files\dotnet\sdk\2.2.107\NuGet.targets(114,5): error : Parameter name: path [C:\Users\Student\Desktop\RemotePc\RemotePcWeb\RemotePcWeb.csproj]

Я даже запускаю dotnet restore --force, пробовал другое ядро ​​.net sdk, но ничего не работает.Я понимаю, что мне нужно восстановить пакеты nuget, но я прочитал, что dotnet restore должна это сделать, но это не так.Может ли кто-нибудь помочь мне с этим?спасибо

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...