IFileIO.cs 222 B

12345678910
  1. namespace Packages.Rider.Editor.ProjectGeneration
  2. {
  3. internal interface IFileIO
  4. {
  5. bool Exists(string fileName);
  6. string ReadAllText(string fileName);
  7. void WriteAllText(string fileName, string content);
  8. }
  9. }