.NET Core的“dotnet restore”“dotnet build”和“dotnet run”命令都是用来干什么的?
Posted FrankYou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.NET Core的“dotnet restore”“dotnet build”和“dotnet run”命令都是用来干什么的?相关的知识,希望对你有一定的参考价值。
- dotnet restore
- 源代码:https://github.com/dotnet/cli/tree/rel/1.0.0/src/dotnet/commands/dotnet-restore
- 入口:https://github.com/dotnet/cli/blob/rel/1.0.0/src/dotnet/commands/dotnet-restore/Program.cs
- 作用:主要是寻找当前目录下的项目文件(project.json),然后利用NuGet库还原整个项目的依赖库,然后遍历每个目录,生成项目文件,继续还原该项目文件中的依赖项。
- dotnet build
- dotnet run
.NET CLI(.NET Core Command-Line) GitHub:https://github.com/dotnet/cli
以上是关于.NET Core的“dotnet restore”“dotnet build”和“dotnet run”命令都是用来干什么的?的主要内容,如果未能解决你的问题,请参考以下文章
VSTS - dotnet restore - PackageCache 不存在
GitLab Runner 在“dotnet restore”或“dotnet test”后停止
如何使用本地 nuget 包源进行 Dockerfile dotnet restore [重复]
为啥我的 dockerfile 中的 dotnet restore 步骤失败?