mirror of
https://github.com/Kizuren/ShantiManti.git
synced 2025-12-21 21:16:04 +01:00
15 lines
No EOL
385 B
C#
15 lines
No EOL
385 B
C#
using UnityEditor;
|
|
using System.IO;
|
|
|
|
public class BuildDateInjector
|
|
{
|
|
[MenuItem("Build/Inject Build Date")]
|
|
public static void InjectBuildDate()
|
|
{
|
|
var buildDate = System.DateTime.Now.ToString("dd.MM.yyyy");
|
|
const string path = "Assets/Resources/BuildInfo.txt";
|
|
|
|
File.WriteAllText(path, buildDate);
|
|
AssetDatabase.Refresh();
|
|
}
|
|
} |