-
Notifications
You must be signed in to change notification settings - Fork 15
Build
The project has no particular dependencies on either VS2013 or VS2015, however visual studio 2015 makes some changes to the .csproj, and when building with VS2015 it seems like certain dependencies point to the 2015 version and the extension will break on certain 2013 installations.
To fix this, the final build is done in 2013 for now.
However myself i prefer to code in 2015, and switching between both is rather simple:
In
FindUnusedFiles_VS\FindUnusedFiles_VS.csproj
to target 2013 make sure both these lines read as following
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
and to be able to open the solution in 2015
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0"> <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>