.NETソリューションの更新を実行するツールがいくつかありますが、ソリューションが配置されているディレクトリを知っている必要があります。
これらのツールを外部ツールとして追加し、IDEツールメニューに表示され、引数として$(SolutionDir)
を指定します。これは正常に機能します。
ただし、これらのツールは、ユーザーがカスタムトップレベルメニュー(Visual Studio統合パッケージプロジェクトを作成したため)およびのコンテキストメニューからIDE)で簡単にアクセスできるようにしたいと考えています。ソリューションノード(Visual Studioアドインプロジェクトを作成しました)。これらのコンテキストから現在のソリューションディレクトリを取得する方法を探しています。
_VisualStudio.DTE
_オブジェクトからソリューション情報を取得しようとしました。
_EnvDTE.DTE dte = (EnvDTE.DTE)System.Runtime.InteropServices.Marshal.GetActiveObject("VisualStudio.DTE");
string solutionDir = System.IO.Path.GetDirectoryName(dte.Solution.FullName);
_
ただし、これにより、現在のソリューションではなく、アドインのソリューションディレクトリが返されます。
$(SolutionDir)
をエコーして読み返してみました:
_System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo("cmd", "echo $(SolutionDir)");
// The following commands are needed to redirect the standard output.
// This means that it will be redirected to the Process.StandardOutput StreamReader.
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
// Do not create the black window.
procStartInfo.CreateNoWindow = true;
// Now we create a process, assign its ProcessStartInfo and start it
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
// Get the output into a string
string result = proc.StandardOutput.ReadToEnd();
_
ただし、これにより、現在のソリューションではなく、IDEのディレクトリが返されました。
ソリューションノードCommandBar
に関連情報が表示されませんでした。
または、定義済みのVisual Studio外部ツールにプログラムでアクセスして(既に定義済みのマクロ引数を使用して)起動する方法があれば、それは機能します。
解決策は何ですか?
EnvDTE.DTE dte =(EnvDTE.DTE)System.Runtime.InteropServices.Marshal.GetActiveObject( "VisualStudio.DTE");文字列solutionDir = System.IO.Path.GetDirectoryName(dte.Solution.FullName);
ただし、これにより、現在のソリューションではなく、アドインのソリューションディレクトリが返されます。
ディレクトリを取得するためのあなたのアプローチは良いです。何が問題なのかは、_VisualStudio.DTE
_オブジェクトを取得する方法です。このコードはどこで呼ばれていますか?私はそれがあなたのアドインにあると思います。ソリューションを開くVisualStudioの別のインスタンスを開くVisualStudioでアドインを実行(デバッグ)しますか?つまり、VisualStudioのインスタンスが2つあります。
GetActiveObject("VisualStudio.DTE")
はランダムなVisualStudioインスタンスを取得します。あなたの場合、アドインへのパスを取得するので、それは明らかにアドインプロジェクトを備えたVisualStudioです。それはあなたの問題の理由が何であるかを説明するためです。
DTE
を取得する正しい方法は非常に簡単です。実際、アドインには、それが実行される(つまり、ソリューションが開かれる)DTEへの参照が既にあります。これは、アドイン接続クラスのグローバル変数_applicationObjectに格納されます。アドインがOnConnection
イベントハンドラーで開始されるときに設定されます。したがって、必要なのは電話することだけです。
_string solutionDir = System.IO.Path.GetDirectoryName(_applicationObject.Solution.FullName);
_
Peter's Pushを正しい方向に向けて、コンテキストメニューアドインを設定し、ソリューションディレクトリを使用して外部ツールを起動し、結果を出力ペインに出力します。アドインからの宣伝文の例:
///--------------------------------------------------------------------------------
/// <summary>This method implements the OnConnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being loaded.</summary>
///
/// <param term='application'>Root object of the Host application.</param>
/// <param term='connectMode'>Describes how the Add-in is being loaded.</param>
/// <param term='addInInst'>Object representing this Add-in.</param>
/// <seealso class='IDTExtensibility2' />
///--------------------------------------------------------------------------------
public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
// Get the solution command bar
CommandBar solutionCommandBar = ((CommandBars)_applicationObject.CommandBars)["Solution"];
// Set up the main InCode
CommandBarPopup solutionPopup = (CommandBarPopup)solutionCommandBar.Controls.Add(MsoControlType.msoControlPopup, System.Reflection.Missing.Value, System.Reflection.Missing.Value, 1, true);
solutionPopup.Caption = "InCode";
// Add solution updater submenu
CommandBarControl solutionUpdaterControl = solutionPopup.Controls.Add(MsoControlType.msoControlButton, System.Reflection.Missing.Value, System.Reflection.Missing.Value, 1, true);
solutionUpdaterControl.Caption = "Update Solution";
updateSolutionMenuItemHandler = (CommandBarEvents)_applicationObject.Events.get_CommandBarEvents(solutionUpdaterControl);
updateSolutionMenuItemHandler.Click += new _dispCommandBarControlEvents_ClickEventHandler(updateSolution_Click);
}
// The event handlers for the solution submenu items
CommandBarEvents updateSolutionMenuItemHandler;
///--------------------------------------------------------------------------------
/// <summary>This property gets the solution updater output pane.</summary>
///--------------------------------------------------------------------------------
protected OutputWindowPane _solutionUpdaterPane = null;
protected OutputWindowPane SolutionUpdaterPane
{
get
{
if (_solutionUpdaterPane == null)
{
OutputWindow outputWindow = _applicationObject.ToolWindows.OutputWindow;
foreach (OutputWindowPane loopPane in outputWindow.OutputWindowPanes)
{
if (loopPane.Name == "Solution Updater")
{
_solutionUpdaterPane = loopPane;
return _solutionUpdaterPane;
}
}
_solutionUpdaterPane = outputWindow.OutputWindowPanes.Add("Solution Updater");
}
return _solutionUpdaterPane;
}
}
///--------------------------------------------------------------------------------
/// <summary>This method handles clicking on the Update Solution submenu.</summary>
///
/// <param term='inputCommandBarControl'>The control that is source of the click.</param>
/// <param term='handled'>Handled flag.</param>
/// <param term='cancelDefault'>Cancel default flag.</param>
///--------------------------------------------------------------------------------
protected void updateSolution_Click(object inputCommandBarControl, ref bool handled, ref bool cancelDefault)
{
try
{
// set up and execute solution updater thread
UpdateSolutionDelegate updateSolutionDelegate = UpdateSolution;
updateSolutionDelegate.BeginInvoke(UpdateSolutionCompleted, updateSolutionDelegate);
}
catch (System.Exception ex)
{
// put exception message in output pane
SolutionUpdaterPane.OutputString(ex.Message);
}
}
protected delegate void UpdateSolutionDelegate();
///--------------------------------------------------------------------------------
/// <summary>This method launches the solution updater to update the solution.</summary>
///--------------------------------------------------------------------------------
protected void UpdateSolution()
{
try
{
// set up solution updater process
string solutionDir = System.IO.Path.GetDirectoryName(_applicationObject.Solution.FullName);
System.Diagnostics.ProcessStartInfo procStartInfo = new System.Diagnostics.ProcessStartInfo(@"SolutionUpdater.exe", solutionDir);
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
// execute the solution updater
proc.Start();
// put solution updater output to output pane
SolutionUpdaterPane.OutputString(proc.StandardOutput.ReadToEnd());
SolutionUpdaterPane.OutputString("Solution update complete.");
}
catch (System.Exception ex)
{
// put exception message in output pane
SolutionUpdaterPane.OutputString(ex.Message);
}
}
///--------------------------------------------------------------------------------
/// <summary>This method completing the update solution thread.</summary>
///
/// <param name="ar">IAsyncResult.</param>
///--------------------------------------------------------------------------------
protected void UpdateSolutionCompleted(IAsyncResult ar)
{
try
{
if (ar == null) throw new ArgumentNullException("ar");
UpdateSolutionDelegate updateSolutionDelegate = ar.AsyncState as UpdateSolutionDelegate;
Trace.Assert(updateSolutionDelegate != null, "Invalid object type");
updateSolutionDelegate.EndInvoke(ar);
}
catch (System.Exception ex)
{
// put exception message in output pane
SolutionUpdaterPane.OutputString(ex.Message);
}
}