17 lines
390 B
C#
17 lines
390 B
C#
#if UNITY_EDITOR
|
|
using Microsoft.Unity.VisualStudio.Editor;
|
|
using UnityEditor;
|
|
|
|
namespace GitTools
|
|
{
|
|
public static class Solution
|
|
{
|
|
public static void Sync()
|
|
{
|
|
ProjectGeneration projectGeneration = new ProjectGeneration();
|
|
AssetDatabase.Refresh();
|
|
projectGeneration.GenerateAndWriteSolutionAndProjects();
|
|
}
|
|
}
|
|
}
|
|
#endif |