설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IFileIO.cs 292B

123456789101112
  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 path, string content);
  8. string EscapedRelativePathFor(string file, string projectDirectory);
  9. }
  10. }