-- -- vs2002_csproj_user.lua -- Generate a Visual Studio 2002/2003 C# .user file. -- Copyright (c) 2009 Jason Perkins and the Premake project -- function premake.vs2002_csproj_user(prj) io.eol = "\r\n" _p('') _p(1,'') _p(2,'') -- Visual Studio wants absolute paths local refpaths = table.translate(prj.libdirs, function(v) return path.getabsolute(prj.location .. "/" .. v) end) _p(3,'', path.translate(table.concat(refpaths, ";"), "\\")) for cfg in premake.eachconfig(prj) do _p(4,'') end _p(3,'') _p(2,'') _p(2,'') _p(1,'') _p('') end