ŁukaszDe 38 Posted May 31, 2019 Hi, Do you know how to generate a map file using MSBuil? I try add /p:mapfile=Detailed and this is accepted but map file is not created. When I set option in Linking property of project than map file is created. Command is: msbuild /p:config=Testy;mapfile=Detailed /nologo /target:Build "D:\\Demo\Project.dproj" Share this post Link to post
Stefan Glienke 1997 Posted May 31, 2019 DCC_MapFile=3 See BDS\bin\CodeGear.Delphi.Targets starting at around line 400 1 Share this post Link to post
ŁukaszDe 38 Posted June 3, 2019 That's right, I add DCC_MapFile=3 to parameters: msbuild /p:config=Testy;mapfile=Detailed;DCC_MapFile=3 /nologo /target:Build "D:\\Demo\Project.dproj" And the map file was created. Thank you. Share this post Link to post