如何将程序集信息包含到 xsltc 编译的 dll 中?

发布于 2024-10-03 07:05:04 字数 92 浏览 1 评论 0原文

我需要在我的 dll 上包含程序集信息,我使用命令提示符和 XSLTC.exe 手动编译了 XSLT 文件。有人知道怎么做吗?伊尔合并?

I need to include assembly info on my dll which I manually compiled the XSLT files using command prompt with XSLTC.exe. Anyone knows how? ILmerge?

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

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

发布评论

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

评论(1

零度° 2024-10-10 07:05:04

此处提供了详细信息。

xsltc [options] [/class:<name>] <sourceFile> [[/class:<name>] <sourceFile>...]

/out: 程序集名称

指定输出的程序集的名称。程序集名称默认为主样式表的名称,如果存在多个样式表,则默认为第一个样式表的名称。

如果样式表包含脚本,则脚本将保存到单独的程序集中。脚本程序集名称是根据主程序集名称生成的。例如,如果您指定 CustOrders.dll 作为程序集名称,则第一个脚本程序集将命名为 CustOrders_Script1.dll。

Details provided here.

xsltc [options] [/class:<name>] <sourceFile> [[/class:<name>] <sourceFile>...]

/out: assemblyName

Specifies the name of the assembly that is output. The assembly name defaults to the name of the main style sheet or the first style sheet if multiple style sheets are present.

If the style sheet contains scripts, the scripts are saved to a separate assembly. Script assembly names are generated from the main assembly name. For example, if you specified CustOrders.dll for your assembly name, the first script assembly is named CustOrders_Script1.dll.

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