From c34eee3e0524a1d9f17f548eb40d69f2b733b0e8 Mon Sep 17 00:00:00 2001 From: Jason Stewart Date: Wed, 14 Dec 2016 13:48:57 -0500 Subject: [PATCH] Fix VS2015 sln icon This is a minor fix to make the correct sln icon appear in Windows. The Icon Handler for sln files is apparently quite picky. VS2015 sln files contain this: # Visual Studio 14 Not this: # Visual Studio 2015 Having 2015 instead of 14 does not appear to cause any major issues. But you get the generic sln file icon in Explorer instead of the VS2015-specific one. --- src/actions/vstudio/vs2015.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/vstudio/vs2015.lua b/src/actions/vstudio/vs2015.lua index 4707e489..88ab8e5e 100644 --- a/src/actions/vstudio/vs2015.lua +++ b/src/actions/vstudio/vs2015.lua @@ -65,7 +65,7 @@ vstudio = { solutionVersion = "12", - versionName = "2015", + versionName = "14", targetFramework = "4.5", toolsVersion = "14.0", filterToolsVersion = "4.0",