1

I'm trying to install .NET Core on Ubuntu. I'd like a version that supports project.json (as I'm still using that).

I followed the steps here. https://www.microsoft.com/net/core#linuxubuntu

In particular, this: sudo apt-get install dotnet-dev-1.0.1

That seems to give me a version that doesn't support project.json.

Is there an apt-get installable version of dotnet-dev that supports project.json?

Thanks! Ranj

1
  • 1
    project.json is dead; I'm not sure you'll be able to find support for it any more. Commented Mar 27, 2017 at 20:22

1 Answer 1

0

Try changing your install command to:

sudo apt-get install dotnet-dev-1.0.0-preview2-1-003177

The downloads are versioned based on the SDK. The SDK that supported project.json is verioned as preview. The 1.0.1 SDK supports csproj only.

Sign up to request clarification or add additional context in comments.

1 Comment

That did it. Thank you!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.