生成的 C# 文件有哪些扩展名?

发布于 2024-10-11 12:23:57 字数 235 浏览 3 评论 0原文

我正在为生成的 C# 文件编写一个过滤器,并希望删除明显的生成文件,例如 .Designer.cs.g.cs。还有哪些其他生成的扩展?谢谢。

说明:我只查找具有 .cs 扩展名的文件,但在 .cs 之前有一些内容。这意味着我对不以 .cs 结尾的 C# 文件不感兴趣。

I'm writing a filter for the C# files that are generated, and want to get rid of the obvious generated files such as .Designer.cs or .g.cs. What other generated extensions are there? Thanks.

Clarification: I'm only looking files that have a .cs extension, but something comes before the .cs. Meaning that C# files that do not end in .cs do not interest me.

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

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

发布评论

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

评论(2

傲世九天 2024-10-18 12:23:57

我可能会忘记其中的许多内容,但仍然是:

  • *.baml
  • *.g.cs
  • *.gics
  • *.designer.cs
  • *.cache
  • *.tlog
  • *.g.resources
  • *.cache
  • *.lref
  • *.pdb
  • *.exe
  • *.dll (很可能是一些外部 dll,而不是生成的 dll!)
  • *.xml

我只列出了与解决方案相关的扩展,而不是与源代码管理相关的扩展。

I might be forgetting many of them, but still:

  • *.baml
  • *.g.cs
  • *.g.i.cs
  • *.designer.cs
  • *.cache
  • *.tlog
  • *.g.resources
  • *.cache
  • *.lref
  • *.pdb
  • *.exe
  • *.dll (Might well be some outside dll instead of being a generated one!)
  • *.xml

I have only listed solution related extensions and not source control related extensions.

荆棘i 2024-10-18 12:23:57

根据您的源代码控制,您可能有这样的文件...

  1. *.vspscc
  2. *.scc
  3. *.vss

如果是 WPF 项目,则

  1. *.xaml.cs

...

.resx ???

VS 文件

  1. *.user
  2. *.suo

Depending on you source control you may have files like...

  1. *.vspscc
  2. *.scc
  3. *.vss

If a WPF project then

  1. *.xaml.cs

...

.resx ???

VS Files

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