gpt4 book ai didi

visual-studio - 使用PowerShell打开文件

转载 作者:行者123 更新时间:2023-12-02 23:13:26 25 4
gpt4 key购买 nike

是否有命令从Visual Studio中的Package Manager控制台(也称为PowerShell)打开项目项(例如类文件)?当我在解决方案资源管理器中双击文件时,会发生相同的事情。

我尝试使用Invoke-Item,但是碰巧要打开Visual Studio的新实例。

最佳答案

$DTE.ExecuteCommand(“File.OpenFile”, "a path to your file")

您可以通过以下方式引用本地项目文件:
$path = [System.IO.Path]
$file = $path::Combine($path::GetDirectoryName($project.FileName), “your local path”)
$DTE.ExecuteCommand(“File.OpenFile”, $file)

关于visual-studio - 使用PowerShell打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28426379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com