1

When I try to compile my c# solution with mdtool (Xamarin) with the Release configuration it compile as a Debug configuration. Someone can help me? The command

$ mdtool build -t:Build -c:Release test.sln

Alpha BA
  • 301
  • 3
  • 4
  • I found how to fix as Xamarin use Release|x86 configuration to run c# project. $mdtool build -t:Build -c:"Release|x86" test.sln – Alpha BA Apr 21 '16 at 15:32

1 Answers1

2

try this:

mdtool build '--configuration:Release' test.sln

run mdtool --help to see other options

Iain Smith
  • 9,230
  • 4
  • 50
  • 61
  • Hi Thanks should be the same as the help mentions -c = --configuration. anyway i tried but the result is the same. the Debug build is created. – Alpha BA Apr 21 '16 at 11:52