c# - why the command Diff2 is not working? -
the command diff2 not giving supposed output in taggedoutputl if set bool taggedoutput true if set false result returned on text textoutput without problems how can resolve problem
the code:
p4command command = new p4command(ps, "diff2", false, new string[] { "-ds", depotpathleft, depotpathright }); perforce.p4.options op= new options(); op.add("-u",""); p4commandresult result= command.run(op); taggedobjectlist list = (result.taggedoutput);
this known behavior of 'diff2' command. might raise concern perforce technical support can notify if behavior changed in future.
for time being, think option run command untagged output.
Comments
Post a Comment