我想创建VSIX包来扩展TFS 2012源代码控制功能分支时,点击右键快捷菜单。 我不想使用插件。 这必须是软件包,其他开发者可以直接安装。 定制菜单项需要出现在源控制资源管理器右键菜单在安装后延。 我没能得到任何样品这一要求还是没能得到正确的文件源。 一个样品,我发现是“TFS社区分支工具”,这是一种类似的功能,我在寻找,但我无法得到它的源代码。
感谢您的帮助。
我想创建VSIX包来扩展TFS 2012源代码控制功能分支时,点击右键快捷菜单。 我不想使用插件。 这必须是软件包,其他开发者可以直接安装。 定制菜单项需要出现在源控制资源管理器右键菜单在安装后延。 我没能得到任何样品这一要求还是没能得到正确的文件源。 一个样品,我发现是“TFS社区分支工具”,这是一种类似的功能,我在寻找,但我无法得到它的源代码。
感谢您的帮助。
我假设你熟悉.vsct文件,命令/菜单/组的GUID /标识的东西(这一切都在MSDN文档)。 所以,问题是这是源代码控制管理的上下文菜单里面的组的GUID /身份证。
猜你可能需要一个文件的上下文菜单中的“获取最新版本”菜单项下面的命令,代码为:
<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>
建立在卡洛斯·金特罗的回答是:如果你需要把该命令在源控制探险上下文菜单中的任何其它位置,你需要正确的标识。 使用EnableVSIPLogging你只能找到命令和他们的父母菜单的信息,而不是群体。
为了找到组ID(或任何其它ID为此事)所使用的源代码控制管理,你可以按照以下步骤(对于VS2015):
Microsoft.VisualStudio.TeamFoundation.VersionControl.dll
(使用JetBrains公司dotPeek例如)。 Resources\HatPackage.resources
。 1000.ctmenu
并复制Base64编码数据。 TfsMenu.cto
(扩展名必须.cto,它需要在一个位置具有写权限,为下一步工作)。 "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VSSDK\VisualStudioIntegration\Tools\Bin\vsct.exe" TfsMenu.cto TfsMenu.vsct
反编译的文件。 现在你有一个用来使TFS插件原来.vsct文件。 在这里你可以查看所有的ID。
为了让你开始发现在TfsMenu.vsct中的菜单项,您可以启用EnableVSIPLogging:
添加HKEY_CURRENT_USER\SOFTWARE\Microsoft\VisualStudio\14.0\General\EnableVSIPLogging
为DWORD32
值为1
。
现在,在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 Server\130\Tools\Binn\ManagementStudio\Extensions\Application\Microsoft.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("\r\nPress 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();
}