Added script

This commit is contained in:
jeldgees
2023-03-08 13:30:31 +01:00
parent 543387911b
commit ee3dc7e20d
5 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#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