Visual Studio 10,将配置管理器重置为出厂设置

发布于 2024-12-27 03:37:30 字数 45 浏览 1 评论 0原文

我对调试和发布设置进行了一些更改,现在我想返回到出厂设置。我怎么能这么做呢?

I have made several changes to both debug and release settings and now I want to return to factory settings. How could I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

能怎样 2025-01-03 03:37:30

没有简单的方法可以返回到项目文件的默认配置。当您创建新项目时,它基于位于 Visual Studio 目录中的模板(例如 C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\CSharp\Windows\1033\ClassLibrary.zip) VS 没有办法重新应用模板。但是,您可以通过执行以下操作手动返回到默认配置:

  1. 删除项目目录中的 *.user 文件,该文件包含一些构建配置值,例如命令行参数。
  2. 创建一个与您尝试重置的类型相同的新项目。
  3. 对于新的空项目和现有项目:右键单击并选择“卸载项目”,右键单击并选择“编辑”,然后复制新项目中的所有 PropertyGroup 部分,并将它们粘贴到旧项目中的所有 PropertyGroup 部分上。

上述假设您实际上没有添加或删除任何配置或平台,否则您将丢失这些更改。这应该使几乎所有设置恢复为默认值,而不会弄乱您的源文件或引用。

There is no easy way to go back to the default configuration for a project file. When you create a new project it's based off a template located in your Visual Studio directory (e.g. C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\CSharp\Windows\1033\ClassLibrary.zip) and VS has no way of reapplying the template. However, you can manually go back to the default configuration by doing the following:

  1. Delete *.user file in your project's directory, this contains a few build configurations values such as command line arguments.
  2. Create a new project that is the same type you're trying to reset.
  3. For the new empty project and your existing project: right click and select Unload Project, right click and select Edit, then copy all the PropertyGroup sections from new project and paste them over all the PropertyGroup sections in your old project.

The above assumes you didn't actually add or remove any configurations or platforms, otherwise you will lose those changes. That should get almost all the settings back to their defaults without messing up your source files or references.

春夜浅 2025-01-03 03:37:30

如果您有项目的备份,只需在备份中搜索具有 .user 扩展名的文件,然后复制它并简单地替换当前项目中的文件。重新打开您的项目。就

我而言,有 2 个带有 .user 扩展名的文件。它是 sampleForm.vbproj.userMyProject.vbproj.user

If you have a backup of your project just search for the files that has .user extension on your backup then copy it and simply replace the files from your current project. Re-open your project. That's it

In my case there are 2 files with .user extension. It is sampleForm.vbproj.user and MyProject.vbproj.user

呆萌少年 2025-01-03 03:37:30

如果您想重置 VS,请按照以下步骤操作

  1. 在“工具”菜单上,单击“导入和导出设置”。

  2. < p>在“欢迎使用导入和导出设置向导”页面上,单击“重置所有设置”,然后单击“下一步”。

  3. 如果您想保存当前设置组合,请单击是,保存当前设置,指定文件名,然后单击“下一步”。

If you want to reset your VS follow below mentioned steps

  1. On the Tools menu, click Import and Export Settings.

  2. On the Welcome to the Import and Export Settings Wizard page, click Reset all settings and then click Next.

  3. If you want to save your current settings combination, click Yes, save my current settings, specify a file name, and then click Next.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文