I am trying to sign .exe and .dll files inside Gitlab Pipeline with docker-windows setup, using docker image: mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019 I try to call these commands: > sn.exe -R myfile.exe myKey.snk > signtool.exe sign /v /f myCert.p12 /p myPassword /fd sha256 /tr "http://sha256timestamp.ws.symantec.com/sha256/timestamp" /td sha256 myFile.exe When doing it locally on [...] read more
I am trying to write an unmanaged debugger for the .NET framework, but when I try to get an instance of the core ICORDebug interface I get a runtime failure with the return value from CoCreateInstance. What am I doing wrong? CComPtr<ICorDebug> debug; HRESULT hr; hr=debug.CoCreateInstance(CLSID_CorDebug,NULL,CLSCTX_INPROC_SERVER); //hr=0x80131701 read more