-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotnet.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathdotnet.json
File metadata and controls
62 lines (62 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"tool": "dotnet",
"displayName": ".NET",
"detection": {
"commands": ["dotnet", "nuget", "msbuild"],
"paths": ["/usr/local/share/dotnet", "/opt/homebrew/bin/dotnet"]
},
"caches": [
{
"id": "nuget-cache",
"path": "~/.nuget/packages",
"type": "packages",
"description": "NuGet global packages cache",
"safeToDelete": true,
"requiresConfirmation": false,
"toolCommand": {
"executable": "dotnet",
"args": ["nuget", "locals", "all", "--clear"]
}
},
{
"id": "nuget-http-cache",
"path": "~/.local/share/NuGet/v3-cache",
"type": "packages",
"description": "NuGet HTTP download cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "dotnet-tools-cache",
"path": "~/.dotnet/tools",
"type": "packages",
"description": ".NET global tools cache",
"safeToDelete": false,
"requiresConfirmation": true
},
{
"id": "msbuild-cache",
"path": "~/Library/Caches/Microsoft/MSBuild",
"type": "buildArtifacts",
"description": "MSBuild compilation cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "roslyn-cache",
"path": "~/Library/Caches/Microsoft/Roslyn",
"type": "buildArtifacts",
"description": "Roslyn compiler cache",
"safeToDelete": true,
"requiresConfirmation": false
},
{
"id": "xamarin-cache",
"path": "~/Library/Caches/Xamarin",
"type": "buildArtifacts",
"description": "Xamarin build artifacts cache",
"safeToDelete": true,
"requiresConfirmation": false
}
]
}