Ei kuvausta
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.

IGenerator.cs 392B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace Packages.Rider.Editor.ProjectGeneration
  3. {
  4. internal interface IGenerator
  5. {
  6. bool SyncIfNeeded(IEnumerable<string> affectedFiles, IEnumerable<string> reimportedFiles, bool checkProjectFiles = false);
  7. void Sync();
  8. bool HasSolutionBeenGenerated();
  9. string SolutionFile();
  10. IAssemblyNameProvider AssemblyNameProvider { get; }
  11. }
  12. }