Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AfterBuild が完了した後に postbuildevent を実行するにはどうすればよいですか?
解決策は次を追加することでした:
<Target Name="AfterBuild"> <Exec Command="$(PostBuildEvent)" /> </Target>
私は実際にCosturaVSPackageを使用していて、これが自動的に行われることを望みました。とにかく、Costura VS Packageのソースコードを変更し、これをWeb.Configに自動的に追加するように変更しました。
ありがとう。