Browse Source

Default to .NET Framework 4.6 in Premake.

pull/908/head
Joao Matos 8 years ago
parent
commit
66637ccd31
  1. 10
      build/Helpers.lua

10
build/Helpers.lua

@ -99,20 +99,14 @@ function SetupManagedProject() @@ -99,20 +99,14 @@ function SetupManagedProject()
language "C#"
location ("%{wks.location}/projects")
framework "4.6"
if not os.istarget("macosx") then
filter { "action:vs*" }
location "."
filter {}
end
if action == "vs2017" then
filter { "action:vs2017" }
framework "4.6"
elseif action == "vs2015" then
filter { "action:vs2015" }
framework "4.6"
end
filter { "action:vs2013" }
framework "4.5"

Loading…
Cancel
Save