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.
プロジェクトを zip ファイルにパックし、ビルド日時 (または現在の日時) を zip ファイル名の一部として使用したいと考えています。
$(TargetDir)\7za.exe a release.zip *
したがって、release-14-3-2010-22_56.zip のように、日付を release.zip に組み込むとよいでしょう。
カスタムのビルド後のマクロを定義することはできますか?
ビルド後のイベントとしてバッチ ファイルを呼び出すことができます。
call "$(SolutionDir)zip.bat"
バッチファイルに日時を読み取らせます。
ここに例があります