Update cheatsheets

This commit is contained in:
ivuorinen
2024-05-28 00:14:18 +00:00
parent 369eb89f11
commit f104adf657
16 changed files with 188 additions and 10 deletions

View File

@@ -12,6 +12,14 @@ source: https://github.com/tldr-pages/tldr.git
`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 ...}}`