mirror of https://github.com/CrimsonTome/tldr.git
dotnet-add-reference: add examples for multiple references (#12845)
parent
fbeade099e
commit
20d52e2d55
|
@ -7,6 +7,14 @@
|
||||||
|
|
||||||
`dotnet add reference {{path/to/reference.csproj}}`
|
`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:
|
- Add a reference to the specific project:
|
||||||
|
|
||||||
`dotnet add {{path/to/project.csproj}} reference {{path/to/reference.csproj}}`
|
`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 ...}}`
|
||||||
|
|
Loading…
Reference in New Issue