13 lines
272 B
C#
Executable File
13 lines
272 B
C#
Executable File
namespace dotless.Core.Input
|
|
{
|
|
public interface IFileReader
|
|
{
|
|
byte[] GetBinaryFileContents(string fileName);
|
|
|
|
string GetFileContents(string fileName);
|
|
|
|
bool DoesFileExist(string fileName);
|
|
|
|
bool UseCacheDependencies { get; }
|
|
}
|
|
} |