gpt4 book ai didi

powershell - NuGet Uninstall.ps1 - 删除项目引用

转载 作者:行者123 更新时间:2023-12-04 13:07:35 28 4
gpt4 key购买 nike

所以在我的 Install.ps1 中,我可以添加这样的引用:

param($installPath, $toolsPath, $package, $project)
$project.Object.References.Add("YourDLL")

如何在 PowerShell 中删除项目引用?

最佳答案

这是我们用于 Machine.Specifications 的内容:

param($installPath, $toolsPath, $package, $project)
$project.Object.References | Where-Object { $_.Name -eq 'Machine.Specifications.TDNetRunner' } | ForEach-Object { $_.Remove() }

关于powershell - NuGet Uninstall.ps1 - 删除项目引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4882762/

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