WuhuIslandTesting/Library/PackageCache/com.unity.ide.rider@3.0.16/Rider/Editor/ProjectGeneration/GUIDProvider.cs
2025-01-07 02:06:59 +01:00

9 lines
212 B
C#

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