示例#1
0
 public void WriteTo(string path)
 {
     Log.Information("Writing assembly {@OrigName:l} [{@OrigPath:l}] to location {@DestPath:l}",
                     TargetAssembly.Name.Name,
                     PathHelper.GetUserFriendlyPath(TargetAssembly.MainModule.FullyQualifiedName),
                     PathHelper.GetUserFriendlyPath(path));
     TargetAssembly.Write(path);
     Log.Information("Write completed successfuly.");
 }