English 中文(简体)
使用 NuGet 安装软件包后是否有办法更改路径和文件名?
原标题:Is there a way to change paths and file names after a package has been installed using NuGet?

我使用 Nuget 下载一个更少版本的靴子。 不幸的是,它安装了 LESS 文件, 安装在 /Content/Less 中。 我更希望它安装到 Content/Style/Bootsstrap

我可以手动在我的解决方案中做出这些更改, 但随着软件包更新, 最好将它自动化 。 如果需要, 我不介意创建一个新的 < code> NuGet 软件包。 我读过有关 < code > 的文件 。 Transform 和 < code>.pp 文件 。

问题回答

现在,这是一个过时的问题, 但是您可以解开软件包 。 将更少的文件移到您想要的文件夹中, 必要时更新 nuspec 文件, 然后重新包装文件 。 在. net 4. 5 中, 使用 Powershell 和 新的 ZipArchive/ ZipFile 类, 可以在几分钟内完成 。





相关问题
NuGet and distributed version control (DVCS)

I wonder if it is possible to use nuget to only store references to the required packages in version control (only the package.config and ignore the packages folder). Is there a way to tell nuget to (...

Package Manager Console issues

I installed Asp.net MVC 3 beta which also installs NuPack, but when I open a project in Visual Studio 2010 Express, the Package Manager Console gives me this error message: System.TypeLoadException: ...

热门标签