Factor .NET framework build version setup code to fix a bug for dependent projects.

This commit is contained in:
Joao Matos 2016-08-31 16:22:58 +01:00
Родитель 5f0d207fa5
Коммит e2e7079866
2 изменённых файлов: 15 добавлений и 13 удалений

Просмотреть файл

@ -72,6 +72,21 @@ function SetupManagedProject()
location "."
configuration(c)
end
if action == "vs2015" then
configuration "vs2015"
framework "4.6"
end
configuration "vs2013"
framework "4.5"
configuration "vs2012"
framework "4.5"
configuration {}
end
function IncludeDir(dir)

Просмотреть файл

@ -22,19 +22,6 @@ solution "CppSharp"
targetdir (libdir)
debugdir (bindir)
if action == "vs2015" then
configuration "vs2015"
framework "4.6"
end
configuration "vs2013"
framework "4.5"
configuration "vs2012"
framework "4.5"
configuration "windows"
defines { "WINDOWS" }