将数据集从根移动到 VS 解决方案资源管理器中的文件夹
我只是想在 VS2010 中组织一个相当大的解决方案。
我想将我的数据集放入根目录的子文件夹中,但是当我这样做时,我收到一串错误,如何移动它们并更新对它们的任何引用?
谢谢
Im just trying to organise a pretty large solution in VS2010.
Id like to place my datasets into a sub folder of the root but when I do I get a string of errors, how can I move them and update any reference to them?
Thankyou
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您在 Visual Studio 中移动数据集时,Visual Studio 会自动更新数据集中的命名空间以在末尾包含文件夹名称。您可以进入每个数据集并删除命名空间的最后/添加部分。这将修复你的错误。
When you move a DataSet in Visual Studio, Visual Studio automatically updates the namespace in the DataSet to include the folder name at the end. You can go into each DataSet and remove the last/added part of the namespace. That will fix your errors.
它不太灵活,但您可以使用“查找和查找”功能。替换解决方案中的所有文件?
It's not beautifully flexible but you could use a Find & Replace on all files in the solution?