如何强制 Visual Studio 2012 始终使用由 TypeScript 创建的生成的 JavaScript 文件的最新版本?
我在我的项目文件中使用以下定义:
<Target Name="BeforeBuild">
<Exec Command=""$(PROGRAMFILES)\Microsoft SDKs\TypeScript\0.8.0.0\tsc" -out scripts\app.js scripts\app.ts -target ES5 @(TypeScriptCompile ->'"%(fullpath)"', ' ')" IgnoreExitCode="true" />
</Target>
当我清理和重建项目时,app.js 会相应更新。
但是,出于某种奇怪的原因,当我尝试使用 Internet Explorer 调试解决方案时,Visual Studio 使用的是过时版本的 app.js,这会使我的断点无效。
这里发生了什么?