Compile VST3 effect plugin

I am a total beginner and tried to create my first vst3 effect plugin for personal use. I installed Juce on windows. The code in PluginProcessor.h , PluginProcessor.cpp , PluginEditor.h and PluginEditor.cpp is ready. How can i compile a vst3 plugin? I exported it in Juce with the Visual Studio 2022 exporter but no vst3 plugin is created in the builds folder. Maybe an Juce expert can help me and write me private?

“exporting” creates a project for the system you exported for. you now have to load that project into Visual Studio and build it.

Thank you for your help, i did that and the vst3 was created.

Considering that you’re new, you should also look into the difference between “Release” compiled builds (what you will eventually be sending off to other people to use) and “Debug” compiled builds (which are larger in size, slower running, and not portable like Release builds are)