Closed Ducatel closed 5 years ago
Looks good, thanks for the PR.
Note that we recommend to use SourceLink nowadays (built into VS, supported by MS, etc). I did accept the PR and will release an alpha to nuget / chocolatye, but if you are able to, I recommend you use portable pdb with sourcelink.
Ok, I will check SourceLink ;) Thanks
Maybe you should add a note in readme which redirect user to sourceLink if it's the recommended way now. After some research, SourceLink cannot handle my case (Gitlab private repo)
Hi everyone,
I'm trying to use GitLink with gitlab. For doing that I'm using the custom URL provider.
Gitlab API v4 allow to get raw file with call like
I have testing this with
HTTP
andPowershell
method but both fail with a HTTP 404 error code. This is due to the replacement of{filename}
(or%var2%
in the srcsrv file) by source file path which can contains/
when it under folder.So I have updated by test
srcsvr
file and rewrite it to pdb withpdbstr.exe
The original file
The updated one (file path after
*
is URL encoded)Like that it's working
Feature description
Add
{urlencoded_filename}
token which will be replaced by url encoded filename.That sounds possible ? Thanks ;)