C# 在发布期间复制目录

发布于 2024-11-19 11:21:08 字数 196 浏览 2 评论 0 原文

我想在网站发布期间将另一个项目中包含的文件夹复制到发布目录中,这可能吗?

原因是我有一个项目,其中包含用于创建数据库结构的 SQL 架构文件、ASP.NET 成员资格架构以及一些针对数据库运行文件的代码。我真的不喜欢在我的网络项目中包含这些 SQL 文件,这看起来很脏。所以我想我应该将它们存储在解决方案中的其他位置。但是当我部署时,我确实需要它们在发布目录中。

I want to copy a folder that's contained in another project into the publish directory during website publish, is this possible?

The reason for this is that I have a project with the SQL schema files for creating the database structure, ASP.NET membership schema, alongside some code to run the files against the database. I don't really like having these SQL files in my web project, that just seemed dirty. So I figured I'd store them somewhere else in the solution. But when I deploy I do need them in the publish directory.

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

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

发布评论

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

评论(2

闻呓 2024-11-26 11:21:09

为什么不将这些脚本放在 App_data 中?它将与网站的其余部分一起部署,并且无法通过客户端 Web 浏览器访问。这就是它的用途,用于存储与您的网站相关的数据,出于安全目的您不希望将这些数据存储在根目录中。

Why not place these scripts in App_data? It will be deployed along with the rest of the website, and cannot be accessed via client web browsers. That's what it is there for, to store data associated with your website that you don't want to have in the root for security purposes.

夜唯美灬不弃 2024-11-26 11:21:09

您可以包含一个用于部署的额外文件夹,其中的所有内容都可编辑发布配置文件:http://www.asp.net/mvc/tutorials/deployment/visual-studio-web-deployment/deploying-extra-files

You can include an extra folder for deployment with all its contents editing the publish profile: http://www.asp.net/mvc/tutorials/deployment/visual-studio-web-deployment/deploying-extra-files

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