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,20 @@
# dotnet add reference
> .NET 프로젝트 간 참조 추가.
> 더 많은 정보: <https://learn.microsoft.com/dotnet/core/tools/dotnet-add-reference>.
- 현재 디렉터리에 있는 프로젝트에 참조 추가:
`dotnet add reference {{경로/대상/참조.csproj}}`
- 현재 디렉터리에 있는 프로젝트에 여러 참조 추가:
`dotnet add reference {{경로/대상/참조1.csproj 경로/대상/참조2.csproj ...}}`
- 특정 프로젝트에 참조 추가:
`dotnet add {{경로/대상/프로젝트.csproj}} reference {{경로/대상/참조.csproj}}`
- 특정 프로젝트에 여러 참조 추가:
`dotnet add {{경로/대상/프로젝트.csproj}} reference {{경로/대상/참조1.csproj 경로/대상/참조2.csproj ...}}`