SquareDash/Library/PackageCache/com.unity.ide.rider@3.0.26/Rider/Editor/ProjectGeneration/GUIDProvider.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

10 lines
212 B
C#

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