Assert while building JUCE 8.0.14 AudioPluginHost on Windows

I’m building the AudioPluginHost on Windows 10, VS 2022, JUCE 8.0.14. It was launched using the Projucer.

I hit 6 asserts on this section:

    else if (! path.containsChar (':'))
    {
        /*  When you supply a raw string to the File object constructor, it must be an absolute path.
            If you're trying to parse a string that may be either a relative path or an absolute path,
            you MUST provide a context against which the partial path can be evaluated - you can do
            this by simply using File::getChildFile() instead of the File constructor. E.g. saying
            "File::getCurrentWorkingDirectory().getChildFile (myUnknownPath)" would return an absolute
            path if that's what was supplied, or would evaluate a partial path relative to the CWD.
        */
        jassertfalse;

        return File::getCurrentWorkingDirectory().getChildFile (path).getFullPathName();
    }

Where the text is:

"%APPDATA%\\LV2"
"%COMMONPROGRAMFILES%\\LV2"

EDIT: this continues to happen every time I try to debug my plugin with the newly compiled APH, as well.