Why is the Typescript settings tab missing in my VS 2013 ASP.NET project properties?

后端 未结 7 1600
[愿得一人]
[愿得一人] 2021-01-01 23:54

I\'m trying to migrate some javascript files to Typescript in a legacy ASP.NET MVC 5 project. I I\'ve created a Typescript file and the compilation from TS to JS works as ex

7条回答
  •  被撕碎了的回忆
    2021-01-02 00:29

    Another possible cause of this is having an old Visual Studio version number in the VisualStudioVersion node in the .csproj file:

    For VS 2013 it should be:

    12.0
    

    For VS 2015 it should be:

    14.0
    

    For VS 2017 it should be:

    15.0
    

提交回复
热议问题