英文:
Clickonce application not downloading audio files nor folders
问题
在我的应用程序(Windows Forms)中,我有一个包含一堆应用程序使用的音频文件的声音文件夹。所有文件都设置为“始终复制”和“包括在项目中”。但是,当我通过ClickOnce安装应用程序时,它既没有文件夹也没有音频文件。是否有任何修复方法,或者这是ClickOnce的限制?当我构建应用程序的发布版本并运行它时,它确实生成了这些文件和文件夹。
英文:
So in my app (windows forms) I have a sounds folder which contains a bunch of audio files the app uses. All the files are set to "copy always" and "include in project". But when I install the app via clickonce it does not have neither the folder or the audio files. Is there any fix or is this a clickonce limitation?
When I build a release of the app and run it, it does generate those files and the folder.
答案1
得分: 0
设置仅使用“Build Action”为“Resource”的文件。确保将您的文件分配为“Resource”。
英文:
The setup only uses the files whose "Build Action" is "Resource". Make sure you have assigned your files as "Resource".
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论