No Output to Serial Monitor

I’m new to PlatformIO and not able to get output from Serial Monitor. It works in the Arduino IDE and outputs to the Arduino Serial Monitor. Build and Upload are fine. I’ve done some searching and can’t find a solution that works. COM port selected in PlatformIO matches COM port in Device Manager.

Any suggestions would be appreciated.

#include <Arduino.h>
void setup()
{
    Serial.begin(115200);
    delay(1000);
}
void loop()
{
    Serial.println("Hello world!");
    delay(1000);
}
[env:esp32-s3-devkitc-1]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200

I was able to get this working. I don’t understand why, but my edits kept going to a project that I had deleted in both VS explorer and MS explorer. But, like a zombie it kept coming back from the dead. The VS chat was able to determine the problem and after several attempts to delete the old project, was able to get the edits to the right project. Still, though, the project continues to reappear in my Projects folder after I delete it!