How to enable C# 6.0 feature in Visual Studio 2013?
Under VS2013 you can install the new compilers into the project as a nuget package. That way you don’t need VS2015 or an updated build server. https://www.nuget.org/packages/Microsoft.Net.Compilers/ Install-Package Microsoft.Net.Compilers The package allows you to use/build C# 6.0 code/syntax. Because VS2013 doesn’t natively recognize the new C# 6.0 syntax, it will show errors in the code … Read more