我们有一个内部NuGet包,它有一个readme.txt文件,我们想在安装包时显示它。为此,我们为包创建了一个非常简单的init.ps1文件,如下所示:
param($installPath, $toolsPath, $package, $project)
$path = [System.IO.Path]
$readmefile = $path::Combine($installPath, "content\Content\fonts\globalcons\readme.txt")
$DTE.ItemOperations.OpenFile($readmefile)
它会执行它应该执行的操作并在安装软件包时打开readme.txt,但它也会在软件包管理器控制台中显示以下内容。
AutoHides : False
Caption : readme.txt
Collection : {Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowBase, Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowBase, Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowBase,
Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowBase...}
CommandBars :
ContextAttributes : System.__ComObject
DTE : EnvDTE.DTEClass
Document : System.__ComObject
HWnd : 0
Height : 1039
IsFloating : False
Kind : Document
Left : 1951
Linkable : False
LinkedWindowFrame : Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowBase
LinkedWindows :
Object : System.__ComObject
ObjectKind : {8E7B96A8-E33D-11D0-A6D5-00C04FB67F6A}
Project : System.__ComObject
ProjectItem : System.__ComObject
Selection : System.__ComObject
Top : 106
Type : vsWindowTypeDocument
Visible : True
Width : 1432
WindowState : vsWindowStateMaximize
HasBeenDeleted : False
Events : Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowEvents
VisibilityEvents : Microsoft.VisualStudio.Platform.WindowManagement.DTE.WindowVisibilityEvents
Rect : 1951,106,1432,1039
OutstandingEventCount : 0
我知道上面提到的脚本导致了它,因为如果我注释掉$DTE.ItemOperations.OpenFile($readmefile)
行,输出就不会出现在Package Manager Console中。我无法弄清楚的是我做错了导致输出每次出现。
答案 0 :(得分:1)
您不需要init.ps1文件来显示readme.txt。只要包的根文件夹中有readme.txt,NuGet本身就支持此功能。注意NuGet仅显示正在安装的软件包的readme.txt,而不显示它所依赖的任何软件包。
但是如果您想坚持使用当前的方法,请将此方法的返回值转换为[void]
:
[void]$DTE.ItemOperations.OpenFile($readmefile)