2

我正在尝试为我正在处理的项目制作一个 ASP.NET 编译工具。使用 aspnet_compiler 确实可以很好地工作,但是自定义工具会更好地满足我们的目的。

但是,当我运行 ClientBuildManager.PrecompileApplication 方法时,我收到一个“MissingManifestResourceException”,抱怨“找不到适合指定文化或中性文化的任何资源”。

然后我反编译了 aspnet_compiler.exe 并使用了它的单个 Precompiler.cs 文件,它给出了相同的异常。

所以它不是我的代码,因为当我使用 aspnet_compiler.exe 源代码时会发生同样的问题,而是其他问题。

是什么让 aspnet_compiler 如此特别?

4

1 回答 1

0

I think you're biting off more than you can probably chew trying to write your own ASP.NET compiler. If there's something special you need to do before or after compilation, look into using a Pre or Post build script.

enter image description here

于 2012-05-11T20:46:22.317 回答