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:
authorOliver Schneider <oliver@assarbad.net>2017-03-22 00:45:26 +0300
committerOliver Schneider <oliver@assarbad.net>2017-03-22 00:45:26 +0300
commitb8625c05bc96cc03d1d940aa7a7682029473f228 (patch)
treebd8befb61cd8c55ffd9ad3b55312552ada6a0786 /src/actions/vstudio/vs2002_csproj_user.lua
parenta5cd805e4532da682f363e283dd6c49819173fcd (diff)
Removing trailing spaces and tabs on lines within the premake4 Lua scripts
(purely cosmetic) --HG-- branch : WDS-build
Diffstat (limited to 'src/actions/vstudio/vs2002_csproj_user.lua')
-rw-r--r--src/actions/vstudio/vs2002_csproj_user.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/actions/vstudio/vs2002_csproj_user.lua b/src/actions/vstudio/vs2002_csproj_user.lua
index fa64e03..15d79cc 100644
--- a/src/actions/vstudio/vs2002_csproj_user.lua
+++ b/src/actions/vstudio/vs2002_csproj_user.lua
@@ -12,11 +12,11 @@
_p('<VisualStudioProject>')
_p(1,'<CSHARP>')
_p(2,'<Build>')
-
+
-- Visual Studio wants absolute paths
local refpaths = table.translate(prj.libdirs, function(v) return path.getabsolute(prj.location .. "/" .. v) end)
_p(3,'<Settings ReferencePath = "%s">', path.translate(table.concat(refpaths, ";"), "\\"))
-
+
for cfg in premake.eachconfig(prj) do
_p(4,'<Config')
_p(5,'Name = "%s"', premake.esc(cfg.name))
@@ -35,7 +35,7 @@
_p(5,'StartWithIE = "false"')
_p(4,'/>')
end
-
+
_p(3,'</Settings>')
_p(2,'</Build>')
_p(2,'<OtherProjectSettings')
@@ -45,8 +45,8 @@
_p(3,'ProjectView = "ProjectFiles"')
_p(3,'ProjectTrust = "0"')
_p(2,'/>')
-
+
_p(1,'</CSHARP>')
_p('</VisualStudioProject>')
-
+
end