forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
26 lines (19 loc) · 768 Bytes
/
Constants.cs
File metadata and controls
26 lines (19 loc) · 768 Bytes
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
using System;
namespace ScriptCs
{
public static class Constants
{
[Obsolete("Use IFileSystem instead.")]
public const string PackagesFile = "packages.config";
[Obsolete("Use IFileSystem instead.")]
public const string NugetFile = "nuget.config";
[Obsolete("Use IFileSystem instead.")]
public const string PackagesFolder = "packages";
[Obsolete("Use IFileSystem instead.")]
public const string BinFolder = "bin";
[Obsolete("Use IFileSystem instead.")]
public const string DllCacheFolder = ".cache";
public const string ConfigFilename = "scriptcs.opts";
public const string DefaultRepositoryUrl = "https://nuget.org/api/v2/";
}
}