views:

74

answers:

2

Hello, Can I connect FogBugz to the TeamCity as a IssueTracker ? Currently I can see only 3 drivers for connect : Bugzilla,Jira and YouTrack. Thanks

+1  A: 

You can contact us at [email protected] to sort this out.

Rich Armstrong
ok, thanks , I'll send message from corporate email on Monday.And what about comments from teamcity side ?
jitm
A: 

Not sure if this is exactly what you are asking, but adding this XML bit to your main-config.xml (c:\build.BuildServer\config\main-config.xml) will cause TeamCity to build the link from the VCS checking comment to your fogbugz case. Our setup will link anything prefixed with case, bug, story, or fb. You can see easily how do add new prefixes as well.

<comment-transformation>
    <transformation-pattern search="(Case|case|Bug|bug|Story|story|fb|FB|Fb)\s+(\d+)" replace="&lt;a target=&quot;_blank&quot; title=&quot;Click to open the case a new window&quot; href=&quot;   http://fogbugz_server/fogbugz?$2&amp;quot;&amp;gt;Case $2&lt;/a&gt;" description="FogBugz Case" />
</comment-transformation>
jslatts