Rainer Schuetze
Rainer Schuetze
I ran into this issue after an update today, too. I have digitally signed the executables with the expired certificate, that seems to improve things a bit (or maybe just...
Is this specific to the project or does it happen with a new project, too? Are you using the custom visualdproj-projects, or the VC project integration? What version of VS...
The log suggests loading the package just fails, but If it crashes, you might find dumps of devenv.exe in %AppData%\Local\CrashDumps. If not, you might have to enable them, see https://learn.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps....
Sorry to hear that it is still not working. I suspect it is the caller that makes ntdll crash, so a call stack would help. Any chance to get a...
> The assembly is the same but somehow the bug does not show up for LDC... huh? ( You have selected a different compiler version in the executors (and missing...
Until a new release of Visual D is available, you can replace "c:\Program Files\Microsoft Visual Studio\2022\Preview\Common7\Packages\Debugger\MagoNatCC.dll" with the file from this archive: [MagoNatCC.zip](https://github.com/user-attachments/files/16815918/MagoNatCC.zip)
Now released as part of https://github.com/dlang/visuald/releases/tag/v1.4.0-rc3
According to Claude AI: "ReSharper may mark .d files as read-only to prevent accidental modifications. These files are typically generated by the compiler and should not be edited manually. If...
It seems the allocator_list has issues when running multi-threaded. An assert is triggered, but not shown because the program freezes due to a lock that is never released by unwinding...
It's even inconsistent between CTFE and runtime: ```D double test() { double[int] aa; return ++aa[0]; } enum res = test(); void main() { assert(test() == res); // [email protected](11): 1 !=...