Context
Sometimes I would like just build/recompile all TypeScript files in a standard VS 2017 .NET framework C# project (.csproj) without building the dlls, etc. I would be happy even a console command line solution.
What I've done so far:
I can use MSBuild to compile everything: c:\>msbuild.exe my.csproj. I even figured out that the installed nuget package Microsoft.TypeScript.MSBuild.2.7.2 is included in my .csproj and has a CompileTypeScript target defined, but unfortunately the c:\>msbuild.exe my.csproj -t:CompileTypeScript returns with 0 Errors, 0 Warnings and does nothing. (supposedly looks for the ts files in in wrong place and found none) Note: referring a not existing target gives an informative error message, so the target is definitely found.
Question
Regardless the MSBuild idea what I was figured out, I would like to compile all TypeScript files where are in the .csproj project and use the same TypeScript compiler settings what are defined there. How can I accomplish this task?