forked from BilalY/Rasagar
10 lines
212 B
C#
10 lines
212 B
C#
namespace Packages.Rider.Editor.ProjectGeneration {
|
|
class GUIDProvider : IGUIDGenerator
|
|
{
|
|
public string ProjectGuid(string name)
|
|
{
|
|
return SolutionGuidGenerator.GuidForProject(name);
|
|
}
|
|
}
|
|
}
|