什么是 cvtres.exe?

What is cvtres.exe?

当我使用 aspnet_compiler.exe 预编译我的网站时,我看到一个 cvtres.exe 进程和 csc.exe。我假设这是 .NET 编译过程的一部分,并且在编译我的 .NET 程序集时也会显示。 什么是 cvtres.exe,它有什么作用?

Windows 资源到对象转换器 (CvtRes.exe)(来自 here

至于它的作用,好吧...我猜它会将资源转换为对象。

编辑: 正如斯科特所说,

to be more specific, it is part of the C++ toolchain to turn resource files (.res) in to compiled objects that can be linked using the linker.

我一直在寻找官方解释它的东西,但我能找到的最好的是 an old support article 提到了它。希望对您有所帮助!