use mdtool command line to compile a c# solution on Windows

710 Views Asked by At

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

1

There are 1 best solutions below

1
On

try this:

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

run mdtool --help to see other options