Remove module dependency?

Hi! I need to remove the base c++ module dependency from my project. But what is the syntax for this?



{
"FileVersion": 3,
"EngineAssociation": "4.25",
"Category": "",
"Description": "",
"Modules": 
{
"Name": "Publish",
"Type": "Runtime",
"LoadingPhase": "Default"
}
]
}

I need it to run without the module. What do I do? I tried various ways of deleting the content of this setting, but UE4 is not able to launch the project no matter what syntax I try.

Hello, Graylord!

This is JSON syntax:

Have you tried to remove the module from the array? Something like this:



{
"FileVersion": 3,
"EngineAssociation": "4.25",
"Category": "",
"Description": "",
"Modules":  { } ]
}


Also, make sure to remove any reference to this module from inside your .Build.cs and your source code!

Thanks! That was what i was looking for!