From 66637ccd31d2214c565875b365a5451b1354cd09 Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Tue, 1 Aug 2017 19:32:08 +0100 Subject: [PATCH] Default to .NET Framework 4.6 in Premake. --- build/Helpers.lua | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/build/Helpers.lua b/build/Helpers.lua index 7a8738db..919e6d78 100644 --- a/build/Helpers.lua +++ b/build/Helpers.lua @@ -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"