From d10cbcc266afbf2c22dd3fc96d35ff60ff58ec1e Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 15 Jan 2019 11:13:22 +0200 Subject: Fixed issue with embedded log attachment in TFS bugs. --- .../Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs') diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs index 46bf63194..addd2f4fb 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs @@ -203,7 +203,7 @@ namespace Tango.MachineStudio.UI.TFS if (embeddedFileLogger != null && File.Exists(embeddedFileLogger.LogFile)) { var embeddedLogFile = _tempFolder.CreateImaginaryFile(); - File.Copy(appFileLogger.LogFile, embeddedLogFile.Path); + File.Copy(embeddedFileLogger.LogFile, embeddedLogFile.Path); item.Attachments.Add(new Attachment() { -- cgit v1.3.1