我试图在Visual Studio Team Services(而不是XAML)上使用新的Build,但是在成功构建时无法弄清楚如何标记源代码。有什么想法吗?
下面的屏幕截图显示了如何在XAML中进行操作。
我已经在https://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/9613014-allow-label-source-upon-succesful-build-on-visual处有一个功能请求我实际上要求一个解决方法,直到Microsoft实现它。
答案 0 :(得分:17)
我认为Yves Dierick的答案在2015年10月是正确的,但从那时起VSTS屏幕的布局发生了很大变化。在最新版本(截至2017年2月)中,您可以通过在构建定义中选择获取源任务,在右上角选择显示高级设置,然后在成功构建中添加标签,然后选择出现的标记源部分下的成功单选按钮。
我花了一段时间才找到它,所以我认为它可能会帮助别人。这个选项在“标记源”下并没有帮助,并且根本没有提到“标签”这个词。
答案 1 :(得分:16)
答案 2 :(得分:3)
对于那些在此线程中寻找TFS托管解决方案(非VSO)的人,请注意TFS 2015 Update 1中对构建标签的支持:https://www.visualstudio.com/en-us/news/tfs2015-update1-vs.aspx
我们还没有运行Update 1,所以我无法确认。
编辑:我们现在正在运行Update 1(实际上是2),标签构建源适用于本地。
答案 3 :(得分:1)
标签源功能在vNext构建中不可用。
除了标签源功能外,关联工作项和创建工作项的构建失败功能也不可用。
您可以在Microsoft UserVoice网站上提交一个有关它的功能请求:https://visualstudio.uservoice.com/forums/121579-visual-studio/category/30925-team-foundation-server-visual-studio-online
答案 4 :(得分:0)
XAML构建在构建开始时标记了源代码,而vNext构建似乎在构建结束时标记。 我注意到了,因为我在构建期间修改/签入/标记文件。 如果我让vNext标记构建,它会在签入之后将我应用的文件标签移动到以前的版本(GetSources中使用的版本)。
但我没有在任何日志文件中看到vNext的标签。我错过了吗? 我将不得不在vnext中禁用标签并在我的msbuild脚本中执行...
编辑: 在vnext构建定义中禁用标签并创建msbuild内联任务以标记工作区的源。现在我可以在构建开始时标记所有源代码并移动构建期间修改的文件的标签:)
如果有人想做类似的事情,这是我的内联任务:
<!--
TaskName="LabelWorkspaceSources"
- input: TfexeFullPath is the path to tf.exe
- input: BaseDirectory is the mapped folder of the software to build
- input: Label to apply
- input: Version is the changeset to apply the label to
-->
<UsingTask TaskName="LabelWorkspaceSources" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll">
<ParameterGroup>
<TfexeFullPath Required="true" />
<BaseDirectory Required="true" />
<Label Required="true" />
<Version Required="true" />
</ParameterGroup>
<Task>
<Code Type="Fragment" Language="cs">
<![CDATA[
//--- get the workspace mapping ---
System.Diagnostics.Process tfProcess = new System.Diagnostics.Process();
tfProcess.StartInfo.FileName = TfexeFullPath;
tfProcess.StartInfo.Arguments = "workfold";
tfProcess.StartInfo.UseShellExecute = false;
tfProcess.StartInfo.CreateNoWindow = true;
tfProcess.StartInfo.RedirectStandardOutput = true;
tfProcess.StartInfo.WorkingDirectory = BaseDirectory;
tfProcess.Start();
string output = tfProcess.StandardOutput.ReadToEnd();
tfProcess.WaitForExit();
string workfoldOutput = output.Trim();
Log.LogMessage(workfoldOutput, MessageImportance.High);
string[] linesWorkfoldOutput = workfoldOutput.Split(new string[] { System.Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
List<string> mappedFolders = new List<string>();
Log.LogMessage("Trying to parse mapped folders.", MessageImportance.High);
foreach (string line in linesWorkfoldOutput)
{
//e.g. $/TPA: C:\TFS_Source\TPA
if (line.Contains("$/"))
{
string[] lineSplit = line.Split(new string[] { ": " }, StringSplitOptions.RemoveEmptyEntries);
//entry lineSplit[0] now contains the server path, lineSplit[1] contains the local folder
mappedFolders.Add(lineSplit[1]);
Log.LogMessage("Found mapped folder: " + lineSplit[1], MessageImportance.High);
}
}
//--- label all the mapped folders ---
foreach (string mappedFolder in mappedFolders)
{
tfProcess = new System.Diagnostics.Process();
tfProcess.StartInfo.FileName = TfexeFullPath;
tfProcess.StartInfo.Arguments = "label " + Label + " \"" + mappedFolder + "\" /child:replace /recursive /comment:\"Label created by task LabelWorkspaceSources\" /version:" + Version;
tfProcess.StartInfo.UseShellExecute = false;
tfProcess.StartInfo.CreateNoWindow = true;
tfProcess.StartInfo.RedirectStandardOutput = true;
tfProcess.StartInfo.WorkingDirectory = mappedFolder;
tfProcess.Start();
output = tfProcess.StandardOutput.ReadToEnd();
tfProcess.WaitForExit();
Log.LogMessage(tfProcess.StartInfo.Arguments, MessageImportance.High);
Log.LogMessage(output, MessageImportance.High);
}
]]>
</Code>
</Task>
</UsingTask>