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

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


I needed to add the following line to the csproj to import the typescript targets:

<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets')" />

Then I could see the typescript build options in the project settings.


As Hans Passant correctly hinted in the comments, the problem was the following ProjectGuid in my .csproj file: {349c5851-65df-11da-9384-00065b846f21}

Once I removed that GUID from my project file and reloaded my project, the Typescript tab showed up in the project properties.


I have added "TypeScriptToolsVersion" in csproj.

  <Project>    <PropertyGroup>      ...      <TypeScriptToolsVersion>1.0</TypeScriptToolsVersion>    </PropertyGroup>  </Project>

But it is Visual Studio 2013 RC2.