1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00

dotnet-add-reference: add examples for multiple references (#12845)

This commit is contained in:
Dany Marcoux 2024-05-27 21:31:29 +02:00 committed by GitHub
parent fbeade099e
commit 20d52e2d55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,14 @@
`dotnet add reference {{path/to/reference.csproj}}`
- Add multiple references to the project in the current directory:
`dotnet add reference {{path/to/reference1.csproj path/to/reference2.csproj ...}}`
- Add a reference to the specific project:
`dotnet add {{path/to/project.csproj}} reference {{path/to/reference.csproj}}`
- Add multiple references to the specific project:
`dotnet add {{path/to/project.csproj}} reference {{path/to/reference1.csproj path/to/reference2.csproj ...}}`