外部可执行文件在 ASP.NET 项目中的位置
我有一组从 ASP.NET 进程使用的可执行文件(通过使用 Process.Start)。
MSDeploy 似乎不支持 _bin_deployableAssemblies
中的子文件夹。 当我使用 _bin_deployableAssemblies/mystuff
时,它不会部署到 bin/mystuff
。它只是被忽略了。
项目本机可执行文件应该放在哪里,以便可以无需额外配置部署项目。
最简单的方法是将其放在 App_Data/mystuff
下,但这太脏了。
I have a set of executable files that are used from ASP.NET process (by using Process.Start
).
It seems that MSDeploy doesn't support subfolders from _bin_deployableAssemblies
.
When I use _bin_deployableAssemblies/mystuff
it doesn't get det deployed to bin/mystuff
. It is just ignored.
Where should the project native executable files go so that the project can be deployed without additional config.
The simplest thing would be to put it under App_Data/mystuff
, but that is just too dirty.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有什么理由不从根目录创建一个文件夹(例如实用程序)并将其类型设置为“内容”?
Any reason not to just create a folder (ex. Utilties) off of the root and set it's type as "Content"?