sdf 文件 (sqlce) 未复制到模拟器
我在将 sdf 文件复制到 WM 模拟器时遇到问题。
我的解决方案结构
- MyApp.DataLayer - 有 sdf 文件
- MyApp.WMUI - 这是 Windows Mobile winform 应用程序
sdf 文件已设置
- 构建操作:内容
- 复制到输出目录:始终复制
但是如果我将应用程序部署到模拟器,则 sdf 文件不会复制。
I have problem with copying sdf file to WM emulator.
My solution structure
- MyApp.DataLayer - there is sdf file
- MyApp.WMUI - this is windows mobile winform app
sdf file has set
- build action: content
- copy to output directory: copy always
But if I deploy app to emulator, that sdf file doesn't copy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解你的结构,你在一个单独的项目(大概是一个类库)中有一个 WinMo 应用程序和一个 SDF 文件。当您部署 WinMo 应用程序时,Visual Studio 将从 WinMo 项目复制所有必需的文件,但仅从类库复制 DLL(而不是 DLL 中的任何文件,如 SDF 文件)。
您有几个选择:
If I understand your structure correctly, you have a WinMo app and an SDF file in a separate project (presumably a class library). When you deploy the WinMo app, Visual Studio will copy over all the necessary files from your WinMo project, but only copy over the DLL from the class library (and not any files in the DLL, like the SDF file).
You have a few options:
将 sdf 文件作为 Link 添加到 WinMoUI 项目。
Add sdf file to WinMoUI project as Link.