是否可以在NuGet包安装过程中修改VS项目文件?
我想创建一个自定义 MSBuild 任务并将其作为 NuGet 包分发。要启用我的任务,应修改 Visual Studio proj 文件。
安装 NuGet 包时是否可以将我的代码部分添加到 proj 文件中?
I'd like to create a custom MSBuild task and distribute it as a NuGet package. To enable my task, the visual studio proj file should be modified.
Is it possible to add my code sections to the proj file when installing the NuGet package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Powershell 来执行此操作。可以卸载项目、编辑项目文件并重新加载项目。
Scott Hanselman 在这里执行此操作:http://channel9.msdn.com/Events/MIX/MIX11/FRM09
如果您找到满足您要求的软件包,您可以使用 ZIP 打开 nuget 软件包并查看 powershell 脚本。这是学习这些东西的一个很好的起点。
希望有帮助
You can do this using Powershell. It is possible to unload you project, edit the project file and reload the project.
Scott Hanselman did this here: http://channel9.msdn.com/Events/MIX/MIX11/FRM09
If you find a package that does what you want, you can open the nuget package using ZIP and see the powershell scripts. Thats a good starting point to learn that stuff.
hope that helps
我认为您最好使用这个问题中回答的 NuGetPowerTools 包:
使用 nuget 包添加自定义构建步骤
此包处理所有 Visual Studio 自动化。
I think you are better off using the NuGetPowerTools package as answered in this question:
Adding a custom build step with a nuget package
This package handles all the Visual Studio automation.