Files
tldr/pages.zh_TW/common/dotnet.md
K.B.Dharun Krishna 5257568887 pages.*: add standard translation (#9672)
* pages./: Automatically add alias pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pages./: Automatically add links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Fix false positives from script

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2022-12-29 08:41:44 +05:30

22 lines
521 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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}}`