Howard Lam
Howard Lam
Is there an alternative solution for now (to clean up the custom folder)?
> * It needs serious testing both on windows in unix systems considering that it deletes files I would say adding an option to just move those files to a...
Yep, I will see if MaKiPL's code, which seems to do what you suggested, works first and see where it gets stuck. But that will have to come after I...
Replace DownloadUnityAssemblies with ``` C# private static void DownloadUnityAssemblies() { var unityVersion = UnityInfo.Version; var file = $"{unityVersion.Major}.{unityVersion.Minor}.{unityVersion.Build}.zip"; var baseFolder = Directory.CreateDirectory(UnityBaseLibsDirectory); baseFolder.EnumerateFiles("*.dll").Do(a=>a.Delete()); var target = baseFolder.GetFiles(file).FirstOrDefault(); if (target !=...
.NET 9 added CET by default. It crashes on older versions of Windows. Need to add this to the project when compiling to disable CET ``` net9.0 enable enable false...