We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9512f15 commit 31788baCopy full SHA for 31788ba
1 file changed
NetcodePatcher.MSBuild.Tasks/NetcodePatchTask.cs
@@ -99,6 +99,7 @@ void RunPatch(ITaskItem patchSpecifier)
99
outputPath = Path.Combine(outputPath, noOverwrite ? $"{Path.GetFileNameWithoutExtension(pluginAssembly.Name)}_patched{Path.GetExtension(pluginAssembly.Name)}" : pluginAssembly.Name);
100
}
101
102
+ Serilog.Log.Information("Processing : {input}", inputPath);
103
patchMethod.Invoke(null, [inputPath, outputPath, ReferenceAssemblyPaths.Select(info => info.ItemSpec).ToArray()]);
104
105
0 commit comments