Solved: How to make Visual Studio find symbols for my plugin?

I changed the LoadingPhase from Default to PreDefault in the .uplugin file as follows:

	"Modules": [
		{
			"Name": "InventoryManager",
			"Type": "Runtime",
			"LoadingPhase": "PreDefault"
		}
	]

Now my plugin dll appears in the modules list, symbols are loaded and I can set breakpoints without troubles :slight_smile:

Found the solution on Discord, credits go to Sean Fisher.

2 Likes