prt_cas.7z
See attached.
Regarding my builds failing, I tried using the dlang.org compiler, but it couldn't seem to find the MSVC libraries, so it would never link the application.
I had similar issues trying to use the dmd that you linked to/provided from the repo's README.
I "resolved" this by, installing the dlang package to C:\D\, unzipping the dmd and ldc to that directory, (C:\D\dmd and C:\D\ldc), using the sc.ini and ldc2.conf as reference, just copied files from the MSVC installation path (C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.13.26128\lib) into a directory relative to dmd & ldc (C:\D\msvc) [note: I couldn't seem to make Sublime Text happy during compile by editing my system path to include the MSVC lib directory, or editing the sc.ini file, not sure why, which is why I resorted to just moving the files].
I also grabbed the ucrt libs (C:\Program Files (x86)\Windows Kits\10\Lib\10.0.16299.0\ucrt) and copied them to the C:\D\msvc directory as well.
I'm able to compile the debug version fine, but when it runs the ldc2 compile, it fails with:
Performing "release" build using ldc2 for x86_64.
derelict-util 3.0.0-beta.2: building configuration "library"...
Microsoft (R) Library Manager Version 14.13.26132.0
Copyright (C) Microsoft Corporation. All rights reserved.
LINK : fatal error LNK1171: unable to load mspdbcore.dll (error code: 193)
Error: C:\D\msvc\bin\lib.exe failed with status: 1171
ldc2 failed with exit code 1.
Noting that the referenced library should come from the MSVS Common7/IDE (C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\IDE), I tried adding that directory to my path (confirming that yes, the .dll exists in that directory), which didn't seem to change anything. I then resorted to copying that into the C:\D\msvc\bin\ and C:\D\msvc\x64\bin, and saw no change.
I'm admittedly 0% familiar with using MS's libraries or toolchains (I've only worked in C/C++ GNU and Borland really), so I recognize I'm probably making a terrible mess.