为虚拟目录 NSIS 设置目标框架

发布于 2024-10-17 06:09:19 字数 121 浏览 1 评论 0原文

如何设置虚拟目录的目标框架? 我正在 NSIS 中使用“NsisIIS::CreateVDir”命令创建虚拟目录。

有什么方法可以将这个创建的 VD 的目标框架设置为 .net 4.0 吗?

谢谢

how can i set the Target Framework of Virtual Directory ?
i am creating the Virtual Directory using "NsisIIS::CreateVDir" command in NSIS.

is there any way to set the Target framework to .net 4.0 fro this created VD ?

Thanks

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

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

发布评论

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

评论(1

白首有我共你 2024-10-24 06:09:19

我知道这是一篇旧文章,但如果有人正在寻找并找到这篇文章,这可能会有所帮助。

我用过:

Section "Aplicacion de administracion"

; Set output path to the installation directory.
SetOutPath "$INSTDIR\WebApp"

; Primary project outputs
File /r /x *.config "Precompiled\WebApp\*.*"

; Config files
SetOverwrite off
    File "Precompiled\WebApp\*.config"
SetOverwrite on

StrCpy $1 "SDGCC App Pool"

NsisIIS::CreateVDir "WebApplication" "$INSTDIR\WebApp" 

SectionEnd

效果很好。确保应用程序池退出。

希望这有帮助。

Iknow it is an old post, but if anybody is looking and finds this post, may be this helps.

I used:

Section "Aplicacion de administracion"

; Set output path to the installation directory.
SetOutPath "$INSTDIR\WebApp"

; Primary project outputs
File /r /x *.config "Precompiled\WebApp\*.*"

; Config files
SetOverwrite off
    File "Precompiled\WebApp\*.config"
SetOverwrite on

StrCpy $1 "SDGCC App Pool"

NsisIIS::CreateVDir "WebApplication" "$INSTDIR\WebApp" 

SectionEnd

and it worked fine. Be sure than the app pool exits.

Hope this help.

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