-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNuGetCacheLocation.cs
40 lines (35 loc) · 1.28 KB
/
NuGetCacheLocation.cs
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
namespace HostApi;
/// <summary>
/// The cache location to list or clear.
/// </summary>
public enum NuGetCacheLocation
{
/// <summary>
/// Indicates that the specified operation is applied to all cache types: http-request cache, global packages cache, and the temporary cache.
/// </summary>
All,
/// <summary>
/// Indicates that the specified operation is applied only to the http-request cache. The other cache locations aren't affected.
/// </summary>
HttpCache,
/// <summary>
/// Indicates that the specified operation is applied only to the global packages cache. The other cache locations aren't affected.
/// </summary>
GlobalPackages,
/// <summary>
/// Indicates that the specified operation is applied only to the temporary cache. The other cache locations aren't affected.
/// </summary>
Temp
}
internal static class NuGetCacheLocationExtensions
{
public static string ToArg(this NuGetCacheLocation? cacheLocation) =>
cacheLocation switch
{
NuGetCacheLocation.All => "all",
NuGetCacheLocation.HttpCache => "http-cache",
NuGetCacheLocation.GlobalPackages => "global-packages",
NuGetCacheLocation.Temp => "temp",
_ => ""
};
}