Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/dotnet.lua')
-rw-r--r--src/tools/dotnet.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tools/dotnet.lua b/src/tools/dotnet.lua
index c52d326..31993d3 100644
--- a/src/tools/dotnet.lua
+++ b/src/tools/dotnet.lua
@@ -3,10 +3,10 @@
-- Interface for the C# compilers, all of which are flag compatible.
-- Copyright (c) 2002-2009 Jason Perkins and the Premake project
--
-
+
premake.dotnet = { }
premake.dotnet.namestyle = "windows"
-
+
--
-- Translation of Premake flags into CSC flags
@@ -45,9 +45,9 @@
return "None"
end
end
-
-
-
+
+
+
--
-- Returns the compiler filename (they all use the same arguments)
--
@@ -60,7 +60,7 @@
return "mcs"
elseif (cfg.framework >= "4.0") then
return "dmcs"
- else
+ else
return "gmcs"
end
else
@@ -76,7 +76,7 @@
function premake.dotnet.getflags(cfg)
local result = table.translate(cfg.flags, flags)
- return result
+ return result
end