dotnet*: add and update Korean translation (#14515)

This commit is contained in:
코드싸이
2024-11-02 03:02:08 +09:00
committed by GitHub
parent f76992563a
commit 98c9638ec8
10 changed files with 253 additions and 7 deletions

View File

@@ -0,0 +1,28 @@
# dotnet restore
> .NET 프로젝트의 의존성과 도구를 복원합니다.
> 더 많은 정보: <https://learn.microsoft.com/dotnet/core/tools/dotnet-restore>.
- 현재 디렉터리의 .NET 프로젝트 또는 솔루션의 의존성 복원:
`dotnet restore`
- 특정 위치의 .NET 프로젝트 또는 솔루션의 의존성 복원:
`dotnet restore {{경로/대상/프로젝트_또는_솔루션}}`
- HTTP 요청을 캐시하지 않고 의존성 복원:
`dotnet restore --no-cache`
- 마지막 복원이 성공했더라도 모든 의존성을 강제로 해결:
`dotnet restore --force`
- 패키지 소스 실패를 경고로 처리하여 의존성 복원:
`dotnet restore --ignore-failed-sources`
- 특정 상세 수준으로 의존성 복원:
`dotnet restore --verbosity {{quiet|minimal|normal|detailed|diagnostic}}`