You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some build tooling has more esoteric loading of dependencies (Cake for example), and requires custom path lookup, particularly when dealing with native dependencies, as this converter has on Microsoft.DiaSymReader.Native.
SymUnmanagedWriterFactory.CreateWriter supports this via SymUnmanagedWriterCreationOptions.UseAlternativeLoadPath, but the current converter code doesn't offer this:
Currently I have to clone the code to add this option to get the native DLL loading working. It would be extremely useful to have this available, either just included or as an option.
The text was updated successfully, but these errors were encountered:
Some build tooling has more esoteric loading of dependencies (Cake for example), and requires custom path lookup, particularly when dealing with native dependencies, as this converter has on
Microsoft.DiaSymReader.Native
.SymUnmanagedWriterFactory.CreateWriter
supports this viaSymUnmanagedWriterCreationOptions.UseAlternativeLoadPath
, but the current converter code doesn't offer this:symreader-converter/src/Microsoft.DiaSymReader.Converter/PdbConverter.cs
Line 169 in b52ea77
Currently I have to clone the code to add this option to get the native DLL loading working. It would be extremely useful to have this available, either just included or as an option.
The text was updated successfully, but these errors were encountered: