Is there a way to setup a "BeforeBuild" step that compiles each TypeScript to it's own file in a specific directory? For instance, I would like all TypeScript files to compile to a '\tsbuild' directory in the solution into individual files.
What I have so far is it combining all of the TypeScript files into one file in a specified directory - which looks like this:
<Target Name="BeforeBuild">
<Exec Command=""$(PROGRAMFILES)\Microsoft SDKs\TypeScript\0.8.0.0\tsc" --out @(TypeScriptCompile ->'"$(ProjectDir)tsbuild\buildall.js" "%(fullpath)" ', ' ')" />
</Target>
Then, once they are in one directory, the goal is to configure the Bundle Configuration to pick them up and minify them during release. The other purpose is to help troubleshooting during development.
