Default to Roslyn-based csc compiler on all platforms.

This commit is contained in:
Joao Matos 2019-02-18 16:21:05 +00:00
parent 73f14baaba
commit 4464c4291b
2 changed files with 2 additions and 2 deletions

View File

@ -247,7 +247,7 @@
}
if tool == "csc" then
local toolset = _OPTIONS.dotnet or iif(os.istarget("windows"), "msnet", "mono")
local toolset = _OPTIONS.dotnet or "msnet"
return compilers[toolset]
else
return "resgen"

View File

@ -42,7 +42,7 @@
function suite.defaultCompiler_onMacOSX()
_TARGET_OS = "macosx"
prepare()
test.isequal("mcs", dotnet.gettoolname(cfg, "csc"))
test.isequal("csc", dotnet.gettoolname(cfg, "csc"))
end