Add new Visual Studio page

From https://github.com/JamesSkemp/Snippets
This commit is contained in:
James Skemp 2022-07-05 19:26:35 -05:00
parent de3ee6046a
commit e4e3010cb0
2 changed files with 26 additions and 0 deletions

View File

@ -12,3 +12,4 @@
- [PostgreSQL](./postgresql.md)
- [Angular](./angular.md)
- [Windows Terminal](./windows-terminal.md)
- [Visual Studio Commands](./visual-studio.md)

25
src/visual-studio.md Normal file
View File

@ -0,0 +1,25 @@
# Visual Studio
Install particular NuGet package.ps1
```powershell
# Installs a particular version of a package.
# See http://stackoverflow.com/q/16126338/11912
Install-Package jQuery -Version 1.10.2
```
## Team Foundation Server
> Last reviewed around November 2013.
Delete workspace for user.bat
```bat
REM Run from VS developer command prompt
tf workspace /delete _workspace_;_domain_\_user_ /server:http://_server_:8080/tfs
PAUSE
```
List all workspaces.bat
```bat
REM Run from VS developer command prompt
tf workspaces /server:http://_server_:8080/tfs /owner:*
PAUSE
```