正在为TFS源代码管理资源管理器上下文菜单扩展创建VSIX包



我正在尝试创建VSIX包,以扩展TFS 2012源代码管理的功能,在单击分支时右键单击上下文菜单。我不想使用外接程序。这必须是其他开发人员可以直接安装的软件包。自定义菜单项需要在安装扩展后显示在源代码管理资源管理器上下文菜单中。我无法获得此要求的任何样本,或者无法获得适当的文档来源。我发现的一个示例是"TFS社区分支工具",这是我正在寻找的类似功能,但我无法获得它的源代码

感谢你的帮助。

我想您已经熟悉.vsct文件、命令/菜单/组Guids/Id之类的东西(所有这些都在MSDN中记录)。因此,问题是在源代码管理资源管理器的上下文菜单中,哪个是组的Guid/Id。

推测您可能希望您的命令位于文件上下文菜单的"获取最新版本"菜单项下,代码为:

<Commands package="guidVSMyPackagePkg">
<Buttons>
<Button guid="guidVSMyPackageCmdSet" id="cmdidMyCommand" priority="0x0100" type="Button">
<Parent guid="guidSourceControlExplorerMenuGroup" id="SourceControlExplorerMenuGroupId"/>
<Strings>
<ButtonText>My Command</ButtonText>
</Strings>
</Button>
</Buttons>
</Commands>
<Symbols>
<GuidSymbol name="guidVSMyPackagePkg" value="{...}" />
<GuidSymbol name="guidVSMyPackageCmdSet" value="{...}">
<IDSymbol name="cmdidMyCommand" value="0x0100" />
</GuidSymbol>
<GuidSymbol name="guidSourceControlExplorerMenuGroup" value="{ffe1131c-8ea1-4d05-9728-34ad4611bda9}">
<IDSymbol name="SourceControlExplorerMenuGroupId" value="0x1111" />
</GuidSymbol>
</Symbols>

基于Carlos Quintero的回答:如果您需要将命令放在源代码管理资源管理器上下文菜单中的任何其他位置,则需要正确的Id。使用EnableVSIPLogging,您只能找到命令及其父菜单的信息,而不能找到组的信息。

为了找到源代码管理资源管理器中使用的组ID(或任何其他ID),您可以按照以下步骤(对于VS2015)进行操作:

  1. 解压缩Microsoft.VisualStudio.TeamFoundation.VersionControl.dll(例如使用JetBrains dotPeek)
  2. 打开ResourcesHatPackage.resources
  3. 查找1000.ctmenu并复制Base64数据
  4. 将数据从Base64转换为字节
  5. 将文件中的字节保存为TfsMenu.cto(扩展名需要为.cto,并且需要位于具有写入权限的位置,以便下一步工作)
  6. 运行"C:Program Files (x86)Microsoft Visual Studio 14.0VSSDKVisualStudioIntegrationToolsBinvsct.exe" TfsMenu.cto TfsMenu.vsct对文件进行反编译

现在您有了用于制作TFS插件的原始.vsct文件。在这里你可以查到所有的身份证。

要开始在TfsMenu.vsct中查找菜单项,可以启用EnableVSIPLogging:
HKEY_CURRENT_USERSOFTWAREMicrosoftVisualStudio14.0GeneralEnableVSIPLogging添加为值为1DWORD32
现在,在Visual Studio中,当在源代码管理资源管理器中悬停菜单或单击菜单项时按住Ctrl+Shift时,会弹出一个消息框,其中包含有关该项的信息,包括该菜单/菜单项的GUID和ID

@Erik我很高兴看到你对提取vsct的解释,因为我正在努力想办法做到这一点。我把它转换成代码,只是为了阐明你的答案。如果有人感兴趣,请在这里分享。

static void Main(string[] args)
{
/*
Extract menus from extensions
http://stackoverflow.com/questions/29831181/creating-vsix-package-for-tfs-source-control-explorer-context-menu-extension
*/
try
{
string vsctPath = ConfigurationManager.AppSettings["VSCTPath"];
if (!File.Exists(vsctPath))
{
WriteConsole("The path to the vsct.exe could not be found. Please edit the app.config to set the right executable path.", ConsoleColor.Yellow);
return;
}
//TODO: Convert to a command line argument
string dllPath = @"C:Program Files (x86)Microsoft SQL Server130ToolsBinnManagementStudioExtensionsApplicationMicrosoft.SqlServer.Management.SqlStudio.Explorer.dll";

var assembly = Assembly.LoadFrom(dllPath);
if (assembly == null)
{
WriteConsole("Could not load assembly.", ConsoleColor.Yellow);
return;
}
var resourceName = assembly.GetManifestResourceNames().FirstOrDefault(n => Regex.IsMatch(n, @"VSPackage.resources", RegexOptions.IgnoreCase));
if (String.IsNullOrWhiteSpace(resourceName))
{
WriteConsole("Could find VSPackage.resources in assembly.", ConsoleColor.Yellow);
return;
}
var resourceManager = new ResourceManager(Path.GetFileNameWithoutExtension(resourceName), assembly);
if (resourceManager == null)
{
WriteConsole("Could find load the resource " + resourceName + ".", ConsoleColor.Yellow);
return;
}
var menus = resourceManager.GetObject("Menus.ctmenu") as byte[];
if (menus == null)
{
WriteConsole("Could find Menus.ctmenu resource in VSPackage.resources.", ConsoleColor.Yellow);
return;
}
string dir = Path.Combine(Path.GetTempPath(), "PackageMenus");
string fileName = Path.GetFileNameWithoutExtension(dllPath) + ".cto";
Directory.CreateDirectory(dir);
Directory.SetCurrentDirectory(dir);
File.WriteAllBytes(Path.Combine(dir, fileName), menus);
string processArgs = String.Format(@"{0} {1}.vsct", fileName, fileName);
var pi = new ProcessStartInfo(vsctPath, processArgs);
pi.UseShellExecute = false;
pi.RedirectStandardError = true;
pi.RedirectStandardOutput = true;
var ret = Process.Start(pi);
var output = ret.StandardOutput.ReadToEnd();
var errors = ret.StandardError.ReadToEnd();
Console.WriteLine(output);
if (!string.IsNullOrWhiteSpace(errors))
{
Console.Write("Errors: ");
WriteConsole(errors, ConsoleColor.Red);
}
else
{
Console.WriteLine("New files written to: " + dir);
}
}
catch(Exception ex)
{
WriteConsole(ex.ToString(), ConsoleColor.Red);
}
finally
{
Console.WriteLine("rnPress any key to continue.");
Console.ReadKey(true);
}
}
private static void WriteConsole(string message, ConsoleColor color = ConsoleColor.White)
{
Console.ForegroundColor = color;
Console.WriteLine(message);
Console.ResetColor();
}

相关内容

  • 没有找到相关文章

最新更新