10 lines
224 B
C#
10 lines
224 B
C#
namespace SingularityGroup.HotReload.Editor.ProjectGeneration {
|
|
class GUIDProvider : IGUIDGenerator
|
|
{
|
|
public string ProjectGuid(string name)
|
|
{
|
|
return SolutionGuidGenerator.GuidForProject(name);
|
|
}
|
|
}
|
|
}
|