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.
Visual Studio 2008 で TortoiseHg + VisualHg を使用しています。VS から公開するたびに Mercurial で (公開されたバージョン番号で) タグを自動的に作成する方法を見つけた人はいますか?
カスタム スクリプトを実行して、hg tag操作を「AfterPublish」アクションとして実行できます。MSBuild のドキュメントをご覧ください。
hg tag
次のようなカスタム ターゲットを追加するには、プロジェクトを変更する必要があります。
<Project> ... <Target Name="AfterBuild"> <Exec Command="hg tag %(TAGNAME)"/> </Target> </Project>