NuGet:如何将转换应用于云项目的 .csdef 文件

发布于 2024-12-20 17:57:52 字数 359 浏览 0 评论 0原文

我正在创建 NuGet 包并面临一个问题,即如何将转换应用于不是 web.config 或 app.config 的文件,我想对 ServiceDefination.csdef 文件进行转换,这就是为什么我将文件命名为 /content 文件夹中的 ServiceDefination.csdef.transform

当我尝试安装该 nuget 时,只需在根目录中复制该文件,并将其命名为 ServiceDefination.csdef.transform.txt

我可以将转换应用于 .csdef 文件还是仅限于 web.config 和 web.config?应用程序配置?

谢谢

I am creating NuGet Package and facing one issue that how can i apply transformation to file that is not web.config or app.config , i would like to make transformation to ServiceDefination.csdef file that's why i have put file named as ServiceDefination.csdef.transform in /content folder.

When i am trying to install that nuget simply make copy of that file in root named as ServiceDefination.csdef.transform.txt

Can i apply transformation to .csdef file or is it limited to web.config & app.config?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韬韬不绝 2024-12-27 17:57:52

nuget 配置转换实际上可以使用相同的 *.transform 约定处理任何 XML 文件(packages.config 除外,对此还有其他 hacks/workarounds)。

如果您只需要转换(阅读:将更改添加/合并到)csdef 文件,这应该可行。

如果没有,您可以尝试 PowerShell 路由并使用包中嵌入的 XML 模板文件修改目标文件。如果您需要有关如何执行此操作的灵感,可以在此处找到一个生成特定 XML 文件(实际上是 nuspec 文件)的示例包:
https://github.com/myget/NuGetPackages/blob/master /NuSpec/tools/init.ps1

另外,如果问题仍然存在,您能否提及您正在使用哪个版本的 nuget?

The nuget config transformations actually work on ANY XML file using the same *.transform convention (except for packages.config, for which there are other hacks/workarounds).

If you simply need to transform (read: add/merge changes into) the csdef file, this should work.

If not, you can attempt the PowerShell route and modify the target file using an XML template file embedded in your package. If you need inspiration on how to do so, you can find an example package which generates a certain XML file (actually a nuspec file) here:
https://github.com/myget/NuGetPackages/blob/master/NuSpec/tools/init.ps1

Also, if the question still stands, could you please mention which version of nuget you are using?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文