diff --git a/tools/Dalamud.LocExporter/Dalamud.LocExporter.csproj b/tools/Dalamud.LocExporter/Dalamud.LocExporter.csproj new file mode 100644 index 000000000..0e2fd0a4f --- /dev/null +++ b/tools/Dalamud.LocExporter/Dalamud.LocExporter.csproj @@ -0,0 +1,18 @@ + + + + Exe + net8.0-windows + enable + enable + + + + + + + + + + + diff --git a/tools/Dalamud.LocExporter/Program.cs b/tools/Dalamud.LocExporter/Program.cs new file mode 100644 index 000000000..f9fe8f6aa --- /dev/null +++ b/tools/Dalamud.LocExporter/Program.cs @@ -0,0 +1,10 @@ +// See https://aka.ms/new-console-template for more information + +using CheapLoc; + +Console.WriteLine("=> Starting loc export..."); + +var dalamud = typeof(Dalamud.Localization).Assembly; +Loc.ExportLocalizableForAssembly(dalamud, true); + +Console.WriteLine("=> Finished loc export!");