I have several systems to complete a C # build using an msbuild script. Inside this solution is a project (csproj) containing links to .ts files that must be compiled using visual studio 2013, which is built into tsc support.
In our original build system, when the project is built from the msbuild script project, it refers to C: \ Program Files (x86) \ Microsoft SDKs \ TypeScript \ 1.0, and on the new system it is connected to C: \ Program Files (x86) \ Microsoft SDK \ TypeScript \ 1.1, and we need 1.0 to work properly. How / where can I change this to indicate the correct version?
source share