VisualStudioプロジェクトにこれがあります
<Target Name="BeforeBuild">
<Message Text="Compiling TypeScript files" />
<Message Text="Executing tsc$(TypeScriptSourceMap) @(TypeScriptCompile ->'"%(fullpath)"', ' ')" />
<Exec Command="tsc$(TypeScriptSourceMap) @(TypeScriptCompile ->'"%(fullpath)"', ' ')" IgnoreExitCode="true" />
</Target>
<Target Name="BeforeBuild"></Target>
構成がデバッグで、プラットフォームがAnyCPUの場合、内で実行したいと思います。これは可能ですか?もしそうなら、それはどのように行われますか?