ASP.NET 5 : Is the “dotnet” command replacing “dnu” and “dnx” commands?

前端 未结 2 756
太阳男子
太阳男子 2021-01-01 20:48

Today, I was following multiple tutorial to run a C# application on Linux but always got stuck at the command dnu restore which was returning me a not fou

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-01 21:24

    Is the dotnet command replacing dnu and dnx commands?

    Yes. They are introducing new command line toolchain, ASP.NET 5 will transition to the new tools for RC2. This is already in progress. There will be a smooth transition from DNX to these new .NET Core components.

    Are the dnu and dnx commands completely replaced?

    No. You can use dnu and dnx, if you follow this instruction Installing .NET Core on Linux.

    Is there some documentation somewhere about the dotnet commands?

    CLI Repo / Intro to .NET Core CLI - v1.0.0

提交回复
热议问题