Preview VS2015 + TypeScript 1.3 = error

I just installed VS2015 Preview. I created an MVC project. I added a new typescript file. I tried to compile and I got:

The task "TypeScript.Tasks.VsTsc" cannot be loaded from the assembly C: \ Program Files (x86) \ MSBuild \ Microsoft \ VisualStudio \ v14.0 \ TypeScript \ TypeScript.tasks.dll. Could not load file or assembly: /// C: \ Program Files (x86) \ MSBuild \ Microsoft \ VisualStudio \ v14.0 \ TypeScript \ TypeScript.tasks.dll 'or one of its dependencies. The system cannot find the specified file. Make sure the declaration is correct, that the assembly and all its dependencies are available, and that the task contains an open class that implements Microsoft.Build.Framework.ITask. Webapplication1

I tried to search for TypeScript.tasks.dll , and I found:

c: \ Program Files (x86) \ MSBuild \ Microsoft \ VisualStudio \ v12.0 \ TypeScript \ TypeScript.Tasks.dll

and

c: \ Program Files (x86) \ MSBuild \ Microsoft \ VisualStudio \ v11.0 \ TypeScript \ TypeScript.Tasks.dll

How to make it work?

+7
visual-studio visual-studio-2015 typescript
source share
2 answers

This helped install TypeScript 1.3 for Visual Studio 2013 after installing Visual Studio 2015. Strange ...

+8
source share

Something is really wrong with the installer for TypeScript 1.3 powertool, I found that using the Repair option in the Add or Remove Programs installation was fixed in most cases.

0
source share

All Articles