I'm creating a typescript project (Project type - Web Application with Typescript), that includes typescript, javascript and other static files.
I'm using the Visual Studio 2015 build environment, and the Microsoft.TypeScript.MSBuild.1.8.11 nuget package for the actual compilation (i.e. not using tsconfig.json).
I have a Post-build event task which has the side effect of 'touch'ing some of these static files. When I subsequently trigger another build, I get a warning in the output*:
Project '<project name>' is not up to date.
Input file '<static file>' is modified after output file ''.`
and the project is forced to rebuild.
Can anyone think how I can work out what VS2015 is referring to when it talks about "output file ''
"?
- I've got MSBuild set to output Diagnostic information in the Tools->Options->Build And Run settings.