Hack fix log spam
This commit is contained in:
parent
0b08e6cf31
commit
3e05280452
@ -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);
|
||||
|
@ -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
|
||||
///
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user