Files
2026-02-27 03:16:18 +07:00

10 lines
224 B
C#

namespace SingularityGroup.HotReload.Editor.ProjectGeneration {
class GUIDProvider : IGUIDGenerator
{
public string ProjectGuid(string name)
{
return SolutionGuidGenerator.GuidForProject(name);
}
}
}