Hello,
Thanks for all the good work on this extension.
Issue as of today:
Update VMicro extension to 2026.422.2201
VS v17.13.33
ESP Core: 3.3.10
Board: esp32_esp32c3
Simple sketch like this:
#include <HX711.h> // Or any other library
void setup() {
Serial.begin(115200);
Serial.println("Test2");
}
void loop() { }
gives the error:
Using library HX711 version 0.7.5 by Bogdan Necula <bogde@bogde.ro> in folder "C:\Users\[user]\Documents\Arduino\libraries\HX711"
Library folder does not exist: C:\VMB\Test2\esp32_esp32c3\Debug\libraries\HX711
System.IO.DirectoryNotFoundException: Could not find a part of the path 'C:\VMB\Test2\esp32_esp32c3\Debug\libraries\HX711'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileSystemEnumerableIterator`1.CommonInit()
at System.IO.FileSystemEnumerableIterator`1..ctor(String path, String originalUserPath, String searchPattern, SearchOption searchOption, SearchResultHandler`1 resultHandler, Boolean checkHost)
at System.IO.DirectoryInfo.InternalGetDirectories(String searchPattern, SearchOption searchOption)
.........
To get a good build, I can do one of these:
- remove #include (well, functionally not good of course, but at least it builds)
- create libraries/[library]-folders in debug-folder manually
- Set Debug --> Off
- Build in Release-mode
It seems the directory structure for the libraries is not created correctly.
Is this some wrong setting on my side?
Build log is in the attachment.