I am updating the project to use the latest versions of everything. I just upgraded the MVC 4 project from .Net 4.0 to .Net 4.5.1. Then I updated the nuget packages (uninstalling some and reinstalling, as they were based on .Net 4.0). Afterword, I upgraded the Typescript machine version to 1.4, which is when it all got into the fan. Just two simple mistakes. First:
The project file uses a different version of the Typescript compiler and the tools that are currently installed on this computer. No compiler was found in C: \ Program Files (x86) \ Microsoft SDKs \ TypeScript \ 1.4 \ 1.4 \ tsc.exe. You can solve this problem by changing the item in the project file.
I made sure that this parameter is set to "1.4"
<TypeScriptToolsVersion>1.4</TypeScriptToolsVersion>
Second error:
The specified job for the executable object "C: \ Program Files (x86) \ Microsoft SDK \ TypeScript \ 1.4 \ 1.4 \ tsc.exe" is not valid.
So, I tried to find the place where the path was installed, and pull it to where he tried to look in the second folder "1.4". The path should be:
C: \ Program Files (x86) \ Microsoft SDK \ TypeScript \ 1.4 \ tsc.exe
I can not find where it is installed, and how I can change it.
I tried:
Reinstall and restore Typescript 1.4 and search wherever the path is specified.
I read the answers that include the check "Check the PATH environment variable". I canβt find where to change this, and at that moment my brain is angry.
I am in Visual Studio 2013 Ultimate. Thanks.
Codebob
source share