在Visual Studio 2010 快速查找Assembly 信息

这是个小技巧,但是很实用, 可以让你快速的得到当前ProjectAssembly 信息.

  1. 打开Visual Studio 2010 ->Tools -> External Tools
  2. 添加一个新的工具:

Title: Strong Name

Command: Powershell.exe

Arguments:  -command "[System.Reflection.AssemblyName]::GetAssemblyName(\"$(TargetPath)\").FullName"

  1. 选中"Use Output Window"
  2. 取消其他所有选中的选项
  1. 看下设置吧:

        

 

测试:

  1. 新建SharePoint 项目
  2. Visual Studio 2010 -> Tools -> Strong Name

        

原文地址:https://www.cnblogs.com/splover/p/2208332.html