mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
dotnet : Add Korean Translation (#3878)
This commit is contained in:
parent
7b364ecea9
commit
28bc981780
1 changed files with 20 additions and 0 deletions
20
pages.ko/common/dotnet.md
Normal file
20
pages.ko/common/dotnet.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# dotnet
|
||||
|
||||
> .NET Core를 위한 크로스 플랫폼 .NET 명령어 도구.
|
||||
> 더 많은 정보: <https://docs.microsoft.com/dotnet/core/tools>.
|
||||
|
||||
- 새 .NET 프로젝트 초기화하기:
|
||||
|
||||
`dotnet new {{짧은_템플릿_이름}}`
|
||||
|
||||
- nuget 패키지들 복구하기:
|
||||
|
||||
`dotnet restore`
|
||||
|
||||
- 현재 디렉토리에서 .NET 프로젝트를 빌드하고 실행하기:
|
||||
|
||||
`dotnet run`
|
||||
|
||||
- 패키지화 된 dotnet 어플리케이션을 실행하기(런타임만 필요하며, 나머지 명령어들은 .NET Core SDK 설치가 필요):
|
||||
|
||||
`dotnet {{경로/어플리케이션.dll}}`
|
Loading…
Add table
Reference in a new issue