Dataset Designer.cs generate Designer1.cs after taking update from SVN in VS2013(数据集 Designer.cs 在 VS2013 从 SVN 获取更新后生成 Designer1.cs)
问题描述
从 SVN 数据集 Designer.cs 文件获取更新后,我面临一个奇怪的问题,生成另一个具有不同名称的文件,例如更新后的 test.Designer.cs 重命名为 test1.Designer.cs .我遵循此处的建议.但无法再次生成 test1.Designer.cs,请帮我解决这个问题.
I am facing a weird problem after taking update from SVN data-set Designer.cs file generate another file with different name like test.Designer.cs after update renamed as test1.Designer.cs . I follow suggestion found here. but not working again its generate test1.Designer.cs ,please help me to solve this .
推荐答案
- 编辑 csproj 文件.
- 搜索
<LastGenOutput>test1.Designer.cs</LastGenOutput>
. - 更正值,使其显示
<LastGenOutput>test.Designer.cs</LastGenOutput>
. - 从磁盘中删除 test.Designer.cs 和 test1.Designer.cs.
- 再次打开解决方案.
- 右键单击数据集,然后单击运行自定义工具以重新生成设计器文件.
- Edit the csproj file.
- Search for
<LastGenOutput>test1.Designer.cs</LastGenOutput>
. - Correct the value so it shows
<LastGenOutput>test.Designer.cs</LastGenOutput>
. - Delete test.Designer.cs and test1.Designer.cs from disk.
- Open the solution again.
- Right-click on the dataset and click Run Custom Tool to regenerate the designer file.
Visual Studio 中的字符串资源 resx 文件也会出现同样的问题.
The same problem can also occur with string resource resx files in Visual Studio.
这篇关于数据集 Designer.cs 在 VS2013 从 SVN 获取更新后生成 Designer1.cs的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:数据集 Designer.cs 在 VS2013 从 SVN 获取更新后生成 Designer1.cs
基础教程推荐
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30