mirror of
https://github.com/github/awesome-copilot.git
synced 2026-08-13 20:59:12 +00:00
Addressed more PR review feedback
This commit is contained in:
@@ -72,7 +72,12 @@ my-overlays/
|
||||
"name": "telemetry-sdk",
|
||||
"version": "1.0.0",
|
||||
"description": "Internal telemetry SDK",
|
||||
"dependencies": ["curl", "nlohmann-json"]
|
||||
"dependencies": [
|
||||
"curl",
|
||||
"nlohmann-json",
|
||||
{ "name": "vcpkg-cmake", "host": true },
|
||||
{ "name": "vcpkg-cmake-config", "host": true }
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -76,17 +76,26 @@ vcpkg install curl[ssl,ssh] --recurse # permits rebuilding with the new featur
|
||||
### Cleaning the vcpkg Cache
|
||||
|
||||
```powershell
|
||||
# Remove all package build artifacts
|
||||
vcpkg x-clean
|
||||
# Remove build trees
|
||||
Remove-Item -Recurse -Force <vcpkg-root>\buildtrees
|
||||
|
||||
# Optional: remove local cache/install directories
|
||||
Remove-Item -Recurse -Force <vcpkg-root>\buildtrees,<vcpkg-root>\downloads,<vcpkg-root>\installed,.\vcpkg_installed
|
||||
# Remove downloaded archives
|
||||
Remove-Item -Recurse -Force <vcpkg-root>\downloads
|
||||
|
||||
# Remove installed packages (classic mode only)
|
||||
Remove-Item -Recurse -Force <vcpkg-root>\installed
|
||||
|
||||
# Remove package build artifacts
|
||||
Remove-Item -Recurse -Force <vcpkg-root>\packages
|
||||
|
||||
# In manifest mode, remove the local vcpkg_installed directory
|
||||
Remove-Item -Recurse -Force .\vcpkg_installed
|
||||
```
|
||||
|
||||
```bash
|
||||
# Remove all package build artifacts
|
||||
vcpkg x-clean
|
||||
|
||||
# Optional: remove local cache/install directories
|
||||
rm -rf <vcpkg-root>/buildtrees <vcpkg-root>/downloads <vcpkg-root>/installed ./vcpkg_installed
|
||||
rm -rf <vcpkg-root>/buildtrees
|
||||
rm -rf <vcpkg-root>/downloads
|
||||
rm -rf <vcpkg-root>/installed
|
||||
rm -rf <vcpkg-root>/packages
|
||||
rm -rf ./vcpkg_installed
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user