﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4528	buildModelFMU doesn't respect the fileNamePrefix argument	Lennart Ochel	Lennart Ochel	"1.	Is there a good reason to replace `.` with `_` in the prefix string?
2.	If the Cpp runtime is selected as target, then the ` fileNamePrefix` isn't considered at all.

You can use the following script to obtain this behaviour:
{{{#!mo
loadString(""
model A
  input Real p;
  input Real u;
  output Real y;
equation
  y = u * p;
end A;
""); getErrorString();

buildModelFMU(A, version=""2.0"", fmuType=""me"", fileNamePrefix=""me.A.c"", platforms={""static""}); getErrorString();

setCommandLineOptions(""--simCodeTarget=Cpp""); getErrorString();

buildModelFMU(A, version=""2.0"", fmuType=""me"", fileNamePrefix=""me.A.cpp"", platforms={""static""}); getErrorString();
}}}

I have expected two FMUs to be generated: `me.A.c.fmu` and `me.A.cpp.fmu`
However, the script will generate the following two FMUs: `me_A_c.fmu` and `A.fmu`
"	defect	closed	high	1.13.0	Code Generation		fixed		
