typical/working command line inputs for MGCB?

no same problem. EDIT: I missed one, you were right.

But now i got a new one. I settled with making a text file to read out. runtimepipeline.txt. Then i added some different #if options inside the textfile. It worked. Then I added a /define:Texture=Yes in front. It worked the way it was supposed to (save in a different folder).

It worked, then i changed something else in a whole different class and renamed the mgcb file and voila

pProcess.StartInfo.Arguments = “/define:Texture=Yes /@:Content/mgcb/runtimepipeline.txt /build:tex.png”;

Which throws me this error

MonoGame Content BuilderBuilds optimized game content for MonoGame projects.Unknown option 'define’Usage: MGCB Options: /launchdebugger Wait for debugger to attach before building content. /quiet Only output content build errors. /outputDir: The directory where all content is written. /intermediateDir: The directory where all intermediate files are written. /rebuild Forces a full rebuild of all content. /clean Delete all previously built content and intermediate files. /incremental Skip cleaning files not included in the current build. /reference: Adds an assembly reference for resolving content importers, processors, and writers. /platform:

Really? Unknown option ‘define’. It was known to you 20 seconds ago. Oh well.

What’s really interesting now is this:
It will apply Texture=Yes if I don’t have a define in front. This can’t be intended, right?

My runtimepipeline.txt looks like this

$if Texture=No
/outputDir:Content/Runtime/Textures
/importer:TextureImporter
/processor:TextureProcessor
/processorParam:ColorKeyColor=255,0,255,255
/processorParam:ColorKeyEnabled=True
/processorParam:GenerateMipmaps=False
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=False
/processorParam:MakeSquare=False
/processorParam:TextureFormat=Color
$endif

$if Texture=Yes
/outputDir:Content/Runtime/Textures2
/importer:TextureImporter
/processor:TextureProcessor
/processorParam:ColorKeyColor=255,0,255,255
/processorParam:ColorKeyEnabled=True
/processorParam:GenerateMipmaps=False
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=False
/processorParam:MakeSquare=False
/processorParam:TextureFormat=Color
$endif