Reaciting to removing folder (including `.`) from the dnx command
This commit is contained in:
parent
ef4a0a3ebb
commit
3147920607
|
|
@ -12,6 +12,6 @@ default dnvmUse=''
|
|||
|
||||
var dnvmPath='${Directory.GetCurrentDirectory()}\packages\KoreBuild\build\dnvm'
|
||||
|
||||
exec program='cmd' commandline='/C dnx . ${command}' if='!IsMono && string.IsNullOrEmpty(dnvmUse)'
|
||||
exec program='cmd' commandline='/C "${dnvmPath}" run ${dnvmUse} . ${command}' if='!IsMono && !string.IsNullOrEmpty(dnvmUse)'
|
||||
exec program='dnx' commandline='. ${command}' if='IsMono'
|
||||
exec program='cmd' commandline='/C dnx ${command}' if='!IsMono && string.IsNullOrEmpty(dnvmUse)'
|
||||
exec program='cmd' commandline='/C "${dnvmPath}" run ${dnvmUse} ${command}' if='!IsMono && !string.IsNullOrEmpty(dnvmUse)'
|
||||
exec program='dnx' commandline='${command}' if='IsMono'
|
||||
|
|
|
|||
Loading…
Reference in New Issue