mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:02:09 +02:00
dotnet: add traditional Chinese translation (#8628)
This commit is contained in:
parent
a3e2f36dd0
commit
cf380b6e6a
1 changed files with 21 additions and 0 deletions
21
pages.zh_TW/common/dotnet.md
Normal file
21
pages.zh_TW/common/dotnet.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# dotnet
|
||||
|
||||
> 適用於 .NET Core 的跨平台 .NET 命令列工具。
|
||||
> 此命令也有關於其子命令的文件,例如:`dotnet build`.
|
||||
> 更多資訊:<https://learn.microsoft.com/dotnet/core/tools/>.
|
||||
|
||||
- 初始化一個新的 .NET 專案:
|
||||
|
||||
`dotnet new {{模板名稱}}`
|
||||
|
||||
- 還原 NuGet 套件:
|
||||
|
||||
`dotnet restore`
|
||||
|
||||
- 在當前目錄中構建並執行 .NET 項目:
|
||||
|
||||
`dotnet run`
|
||||
|
||||
- 運行 .NET 應用程式(只需要執行環境,其餘命令需要 .NET Core SDK):
|
||||
|
||||
`dotnet {{路徑/到/應用程式.dll}}`
|
Loading…
Add table
Reference in a new issue