-
Notifications
You must be signed in to change notification settings - Fork 926
Can't install with dotnet SDK 1.X; 2.X can't install some sample projects #458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Note: to get the rest of the installs running in the
|
This actually exists in two locations on my machine:
|
The project hasn't been updated to the .NET Core 2.0 SDK yet. It currently uses 1.1 There's a pull request to upgrade it to 2.0: #436. I might work on completing that PR and merge it, which should resolve some issues here. |
This is the same issue I'm hitting while trying to get #436 working. It looks like the same issue as dotnet/sdk#1385. |
dd4e504 should fix the issue with Microsoft.WebApplication.targets. Unfortunately I had to hard-code the path, as |
When I try to use
dotnet restore
with a 1.X SDK install, adotnet restore error: Invalid input 'src\React.sln'. The file type was not recognized.
pops up as part ofdev-build.bat
.When I uninstall that and use a 2.X install,
dotnet restore src\React.sln etc.
fails withThe specified SDK version [1.0.0] from global.json [C:\Code\React.NET\global.json] not found; install specified SDK version
.When I change
global.json
to reference"version": "2.0.0"
instead of"version": "1.0.0"
, it complains about a trio of missing targets in sample projects, then installs the rest:I'm guessing there's some part of the VS/dotnet install I'm missing?
The text was updated successfully, but these errors were encountered: