Нам на самом деле нужно это там, где я работаю. Я собрал небольшую задачу под названием «vssbranch» (не особо креативная, но вот код ... пример файла сборки и вывод его выполнения:
КОД:
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using SourceSafeTypeLib;
using NAnt.Core;
using NAnt.Core.Attributes;
namespace NAnt.Contrib.Tasks.SourceSafe
{
[TaskName("vssbranch")]
public sealed class BranchTask : BaseTask
{
/// <summary>
/// The label comment.
/// </summary>
[TaskAttribute("comment")]
public String Comment { get; set; }
/// <summary>
/// Determines whether to perform the branch recursively.
/// The default is <see langword="true"/>
/// </summary>
[TaskAttribute("recursive"),
BooleanValidator()]
public Boolean Recursive { get; set; }
[TaskAttribute("branchname", Required = true)]
public String BranchName { get; set; }
protected override void ExecuteTask()
{
this.Open();
try
{
if (VSSItemType.VSSITEM_PROJECT != (VSSItemType)this.Item.Type)
throw new BuildException("Only vss projects can be branched", this.Location);
IVSSItem newShare = null;
this.Comment = String.IsNullOrEmpty(this.Comment) ? String.Empty : this.Comment;
if (null != this.Item.Parent)
newShare = this.Item.Parent.NewSubproject(this.BranchName, this.Comment);
if (null != newShare)
{
newShare.Share(this.Item as VSSItem, this.Comment,
(this.Recursive) ?
(int)VSSFlags.VSSFLAG_RECURSYES : 0);
foreach (IVSSItem item in newShare.get_Items(false))
this.BranchItem(item, this.Recursive);
}
}
catch (Exception ex)
{
throw new BuildException(String.Format("Failed to branch '{0}' to '{1}'", this.Item.Name, this.BranchName), this.Location, ex);
}
}
private void BranchItem(IVSSItem itemToBranch, Boolean recursive)
{
if (null == itemToBranch) return;
if (this.Verbose)
this.Log(Level.Info, String.Format("Branching {0} path: {1}", itemToBranch.Name, itemToBranch.Spec));
if (VSSItemType.VSSITEM_FILE == (VSSItemType)itemToBranch.Type)
itemToBranch.Branch(this.Comment, 0);
else if (recursive)
{
foreach (IVSSItem item in itemToBranch.get_Items(false))
this.BranchItem(item, recursive);
}
}
}
}
СОЗДАТЬ ФАЙЛ:
<echo message="About to execute: VSS Branch" />
<echo message="Source Safe Path: ${SourceSafeRootPath}/${CURRENT_FILE}" />
<vssbranch
username="my_user_name"
password="my_password"
recursive="true"
comment="attempt to make a branch"
branchname="test-branch"
dbpath="${SourceSafeDBPath}"
path="${SourceSafeRootPath}/${CURRENT_FILE}"
verbose="true"
/>
</foreach>
</target>
ВЫВОД:
NAnt 0.85 (сборка 0.85.2478.0; выпуск; 14.10.2006)
Copyright (C) 2001-2006 Джерри Шоу
http://nant.sourceforge.net
Файл сборки: file: /// C: /scm/custom/src/VssBranch/bin/Debug/test.build
Целевая среда: Microsoft .NET Framework 2.0
Заданная цель (и): выполнить
пробег:
[loadtasks] Сканирование сборки «NAnt.Contrib.Tasks» для расширений.
[loadtasks] Сканирование сборки "VssBranch" для расширений.
[echo] О выполнении: VSS Branch
....
[vssbranch] Ветвящийся путь SecurityProto: $ / VSS / Источник Endur / C # / DailyLive / proto / test-branch / SecurityProto
....
СТРОИТЬ УСПЕШНО
Общее время: 12,9 секунды.
Очевидно, что результат будет разным, я вытягивал элементы для ветвления из текстового файла с именем 'params.txt'. Эта задача выполняет то, что известно в мире VSS как «Совместное использование и ветвление» (ветвление сразу после совместного использования) ... другим системам контроля версий не нужно делиться перед ветвлением, а ... это на другой день