1 write to Uri
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
AttachmentSet.cs (1)
70Uri = uri;
19 references to Uri
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\AttachmentConverters.cs (1)
77writer.WriteString("Uri", value.Uri.OriginalString);
Microsoft.TestPlatform.CrossPlatEngine (1)
PostProcessing\PostProcessingTestRunAttachmentsProcessingEventsHandler.cs (1)
68_consoleOutput.Information(false, ConsoleColor.Gray, CommandLineResources.AttachmentOutputFormat, uriDataAttachment.Uri.LocalPath);
Microsoft.TestPlatform.Extensions.BlameDataCollector (2)
BlameLogger.cs (2)
133var uriDataAttachment = attachmentSet.Attachments.LastOrDefault((attachment) => attachment.Uri.ToString().EndsWith(".xml")); 140var filepath = uriDataAttachment.Uri.LocalPath;
Microsoft.TestPlatform.Utilities (4)
CodeCoverageDataAttachmentsHandler.cs (4)
59if (attachment.Uri.LocalPath.EndsWith(CoverageFileExtension, StringComparison.OrdinalIgnoreCase) || 60attachment.Uri.LocalPath.EndsWith(XmlFileExtension, StringComparison.OrdinalIgnoreCase)) 62coverageReportFilePaths.Add(attachment.Uri.LocalPath); 66coverageOtherFilePaths.Add(attachment.Uri.LocalPath);
Microsoft.VisualStudio.TestPlatform.Common (1)
DataCollection\DataCollectionManager.cs (1)
792file.Uri);
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (6)
Utility\Converter.cs (6)
459EqtTrace.Verbose($"TrxLogger.ToCollectorEntry: Got attachment {uriDataAttachment.Uri} with description {uriDataAttachment.Description}"); 461string sourceFile = uriDataAttachment.Uri.LocalPath; 515string sourceFile = uriDataAttachment.Uri.IsAbsoluteUri ? uriDataAttachment.Uri.LocalPath : uriDataAttachment.Uri.ToString(); 517EqtTrace.Verbose($"TrxLogger.ToResultFiles: Got attachment {uriDataAttachment.Uri} with local path {sourceFile}");
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
AttachmentSet.cs (2)
76return $"{nameof(Uri)}: {Uri.AbsoluteUri}, {nameof(Description)}: {Description}";
vstest.console (1)
Internal\ConsoleLogger.cs (1)
695var attachmentOutput = string.Format(CultureInfo.CurrentCulture, CommandLineResources.AttachmentOutputFormat, uriDataAttachment.Uri.LocalPath);
vstest.console.arm64 (1)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (1)
695var attachmentOutput = string.Format(CultureInfo.CurrentCulture, CommandLineResources.AttachmentOutputFormat, uriDataAttachment.Uri.LocalPath);