Team City Artifact Paths Field中的评论

时间:2013-12-09 17:08:24

标签: continuous-integration teamcity

是否可以在Team City的Artifact路径字段中添加注释?我应该使用什么格式?我希望下一个人能够快速了解​​发生了什么以及为什么。

1 个答案:

答案 0 :(得分:3)

您可以使用与文件不匹配的任何内容。它将在构建日志中显示为警告(未找到匹配的工件),但不会造成任何伤害。

我使用哈希来开始评论,例如:

- (void)textViewDidChange:(UITextView *)textView
{
    NSString *lastCharacter = [textView.text substringWithRange:NSMakeRange([textView.text length]-1, 1)];
    if([lastCharacter isEqualToString:@" "]) {
        NSMutableArray *words = (NSMutableArray *)[textView.text componentsSeparatedByString:@" "];
        NSString *lastWord = words[words.count - 2];
        for (NSString *word in self.words.allKeys) {
            if ([lastWord isEqualToString:word]) {
                lastWord = self.words[word];
                [words replaceObjectAtIndex:words.count - 2 withObject:lastWord];
                textView.text = [words componentsJoinedByString:@" "];
                break;
            }
        }
    }
}