I'm building a WPF application with dotnet core in the visual studio code editor. The problem I'm having is that the Resources folder isn't included with builds, or so it seems. I can't find an example of how to to do that outside of Visual Studio and any image I try to use doesn't work. Any tips or examples would be appreciated!
Folder structure
|- Root Folder
|- bin
|- Debug
|- netcoreapp3.1
|- [this has dlls and exe, but no Resources]
|- obj
|- Data
|- Pages
|- Resources
|- images
Commands to run app:
dotnet clean
dotnet build
dotnet run
It's all standard stuff so please point out any missing commands, misplaced files, etc. I'm new to WPF and trying to build windows app in VS Code.