IGUIDGenerator.cs 134 B

1234567
  1. namespace Packages.Rider.Editor.ProjectGeneration
  2. {
  3. internal interface IGUIDGenerator
  4. {
  5. string ProjectGuid(string name);
  6. }
  7. }