您能为 Visual C#.NET 解决方案推荐 .cvsignore 文件吗?

发布于 2024-07-07 02:21:59 字数 196 浏览 5 评论 0原文

我开发了一个包含三个项目的 Visual C#.NET 2008 Express Edition 解决方案。 我正在清理它以将其提交到 CVS 存储库中。

有几个在构建过程中创建的文件不需要放置在存储库中,因为它们会自动重新生成。

问题:任何人都可以建议将模式列表放入 .cvsignore 文件中,以便忽略这些生成的文件和文件夹吗?

I've developed a Visual C#.NET 2008 Express Edition solution containing three projects. I am cleaning it up to commit it into a CVS repository.

There are several files that are created during the build process that are not necessary to be placed in the repository since they will be regenerated automatically.

The question: Can anyone suggest a list of patterns to be placed into a .cvsignore file so that these generated files and folders are ignored?

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

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

发布评论

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

评论(2

抱着落日 2024-07-14 02:21:59

通常,这些是您必须提交的唯一内容:

  • .sln 文件
  • .cs 文件
  • .csproj 文件
  • .config 文件
  • 您引用的
  • 其他非生成文件的 外部 DLL 和相应的 XML/配置文件应用程序使用

其余所有内容都将被忽略,包括:

  • .suo 文件
  • .csproj.user 文件
  • /bin 文件夹和内容
  • /obj 文件夹和内容
  • 几乎所有其他内容

Typically these are the only things that you have to commit:

  • .sln files
  • .cs files
  • .csproj files
  • .config files
  • External DLLs and corresponding XML/config files that you are referencing
  • other non-generated files that your application uses

All the rest are to be ignored, including:

  • .suo files
  • .csproj.user files
  • /bin folder and contents
  • /obj folder and contents
  • practically everything else
浅语花开 2024-07-14 02:21:59

谢谢! 这就是我创建的:

bin
obj
*.cache
*.suo
*.csproj.user

Thanks! This is what I have created:

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