This error occurs because the profiler tries to convert the source path from the PRDB file into a URI using the .Net System.Uri class.
If the string is not a valid URI and cannot be converted into an absolute file path, the process fails with the title exception and citing the related file.
Expected URI format:
- A proper file URI, such as: file:///C:/path/to/file.cs
- A valid HTTP/HTTPS URI, such as: https: //example.com/src/file.cs
- Relative paths are allowed only if they can be resolved to an absolute path using Path.GetFullPath.
0
0
Was this article helpful?
0 out of 0 found this helpful