Hack fix log spam

This commit is contained in:
Cj 2024-06-19 09:54:12 -04:00
parent 0b08e6cf31
commit 3e05280452
3 changed files with 6 additions and 1 deletions

View File

@ -46,6 +46,7 @@ public class ReCodeItCrossCompiler
Logger.Log("-----------------------------------------------", ConsoleColor.Green);
Logger.Log($"Generated Cross Mapped DLL for project {ActiveProject.SolutionName}", ConsoleColor.Green);
Logger.Log($"Built to: {Path.Combine(ActiveProject.RemappedAssemblyPath, ActiveProject.OriginalAssemblyDllName)}", ConsoleColor.Green);
Logger.Log($"Changed {ActiveProject.ChangedTypes.Count} types", ConsoleColor.Green);
Logger.Log($"Original assembly path: {ActiveProject.OriginalAssemblyPath}", ConsoleColor.Green);
Logger.Log($"Original assembly hash: {ActiveProject.OriginalAssemblyHash}", ConsoleColor.Green);

View File

@ -44,6 +44,10 @@ public class CrossCompilerProjectModel
DataProvider.ReCodeItProjectsPath,
SolutionName);
public string ProjectDllName => SolutionName + ".dll";
public string OriginalAssemblyDllName => Path.GetFileName(OriginalAssemblyPath);
/// <summary>
/// This is where the final dll is built to
///

View File

@ -71,7 +71,7 @@ public static class DataProvider
File.WriteAllText(settingsPath, jsonText);
Logger.Log($"App settings saved to {settingsPath}");
//Logger.Log($"App settings saved to {settingsPath}");
}
public static void LoadMappingFile(string path)