File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,7 +86,24 @@ Even with that Visual Studio can still be very temperamental with long file path
8686
87871 . Close Visual Studio
88882 . Make sure you didn't skip step 1.
89- 3 . Clear your local NuGet cache AND your local XamarinBuildDownload cache.
89+ 3 . Clear your local NuGet cache AND your local XamarinBuildDownload cache:
90+ - In your Windows Terminal (Powershell):
91+ ``` ps
92+ dotnet nuget locals all -c # Clear all Nuget cache
93+ cd $env:localappdata # Go to your AppData\Local folder
94+ Get-ChildItem -Filter "*Xamarin*" # Check for your XamarinBuildDownloadCache folder
95+ rm -Force -Recurse XamarinBuildDownloadCache # Delete that folder
96+ Get-ChildItem -Filter "*Xamarin*" # Confirm that it has been deleted
97+ ```
98+ - In your Mac Terminal:
99+ ```zsh
100+ setopt interactive_comments
101+ # Now comment is enabled
102+ cd ~/Library/Caches # Go to your Caches folder
103+ ls -d *Xamarin* # Check for your XamarinBuildDownload folder
104+ rm -rf XamarinBuildDownload # Delete that folder
105+ ls -d *Xamarin* # Confirm that it has been deleted
106+ ```
901074. Make sure you didn't skip step 3.
911085. Delete your project `bin` and `obj` folders.
921096. Make sure you didn't skip step 5.
You can’t perform that action at this time.
0 commit comments