为什么某些文件没有发布到 App_Data 文件夹中?
我正在使用 Visual Studion 2008 来构建和部署 Web 服务项目。 我已经在 App_Data 文件夹中添加了一堆文件:一些 xml、一些纯文本和 2 个 pdf。 所有这些文件都包含在 .csproj 文件中(如果不包含,则不会发布)但是从 VS2008 进行“发布”时(当然选择了“App_Data 文件夹中的包含文件”选项),pdf 是未发表。 我已经在选择“替换”和“删除”选项的情况下对此进行了测试。
有谁知道为什么某些文件(在本例中为 PDF)没有发布?
I'm using Visual Studion 2008 to build and deploy a webservice project. I've added a bunch of files to the App_Data folder: some xml, some plain text and 2 pdf's. All these files are included in the .csproj file (if they are not, they will not be published) But when doing a 'publish' from VS2008 (of course with the option 'Included files from the App_Data folder' selected) the pdf's are NOT published. I have tested this with both 'replace' and 'delete' options selected.
Does anyone know why certain files, in this case PDF's, are not published?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在解决方案资源管理器中,右键单击您的 pdf 文件并查看属性。 将构建操作从“无”更改为“内容”。 这些文件现在应该与项目的其余部分一起发布。
In the solution explorer right click your pdf's and look at the properties. Change the Build Action from 'None' to 'Content'. The files should now be published with the rest of the project.
我遇到了同样的问题,CSV 文件无法发布。 选择文件的属性。 将构建操作从“无”更改为“内容”。 问题解决了。
I had the same problem where CSV files do not publish. Select the file's properties. Change the Build Action from 'None' to 'Content'. Problem solved.