From 917ffda37f0a99664fc218687444fe8e6fd9d985 Mon Sep 17 00:00:00 2001 From: Martin Benjamins Date: Sun, 8 Sep 2024 15:20:36 +0200 Subject: [PATCH] Fix release dir for MetaGen --- MapUpconverter.sln | 4 ++-- MetaGen/MetaGen.csproj | 1 + MetaGen/Program.cs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/MapUpconverter.sln b/MapUpconverter.sln index 84f9e1a..b640464 100644 --- a/MapUpconverter.sln +++ b/MapUpconverter.sln @@ -43,8 +43,8 @@ Global {B8133A09-958D-4129-935E-5AAC2AF91B69}.Debug|Any CPU.Build.0 = Debug|Any CPU {B8133A09-958D-4129-935E-5AAC2AF91B69}.Release|Any CPU.ActiveCfg = Release|Any CPU {B8133A09-958D-4129-935E-5AAC2AF91B69}.Release|Any CPU.Build.0 = Release|Any CPU - {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.CLIOnlyRelease|Any CPU.ActiveCfg = Release|Any CPU - {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.CLIOnlyRelease|Any CPU.Build.0 = Release|Any CPU + {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.CLIOnlyRelease|Any CPU.ActiveCfg = CLIOnlyRelease|Any CPU + {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.CLIOnlyRelease|Any CPU.Build.0 = CLIOnlyRelease|Any CPU {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.Debug|Any CPU.Build.0 = Debug|Any CPU {3D78D50E-185D-467D-9F1A-B15FEDD677A2}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/MetaGen/MetaGen.csproj b/MetaGen/MetaGen.csproj index bb51ed8..cefcefd 100644 --- a/MetaGen/MetaGen.csproj +++ b/MetaGen/MetaGen.csproj @@ -8,6 +8,7 @@ false true enable + Debug;Release;CLIOnlyRelease diff --git a/MetaGen/Program.cs b/MetaGen/Program.cs index 50a9fc5..2a5d20b 100644 --- a/MetaGen/Program.cs +++ b/MetaGen/Program.cs @@ -25,7 +25,7 @@ static void Main(string[] args) if (args.Length < 2) { Console.WriteLine("Usage (single mode): MetaGen <.m2 or .wmo file>"); - Console.WriteLine("Usage (full run mode): MetaGen (WoW folder or CDN host)"); + Console.WriteLine("Usage (full run mode, requires additional libraries compiled separately): MetaGen (WoW folder or CDN host)"); Console.WriteLine("Press enter to exit."); Console.ReadLine(); return;