如何在没有 web.config 的情况下为 aspnet_compiler.exe 指定 CompilerVersion?
当您预编译不包含 web.config
的目录时,aspnet_compiler.exe
默认为 CompilerVersion
2.0 和 3.5 代码无法编译。 以下最小的 web.config
是指定 CompilerVersion
的唯一方法吗?
<?xml version="1.0"?>
<configuration>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/>
</compiler>
</compilers>
</system.codedom>
</configuration>
我们将 asp.net 预编译与我们的构建和集成环境集成,并且不使用 web.config
作为我们的控制库组件
When you precompile a directory that doesn't contain a web.config
, the aspnet_compiler.exe
defaults to CompilerVersion
2.0 and 3.5 code fails to compile. Is the following minimal web.config
the only way to specify the CompilerVersion
?
<?xml version="1.0"?>
<configuration>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/>
</compiler>
</compilers>
</system.codedom>
</configuration>
We integrated asp.net precompilation with our build and integration environments and don't use web.config
s for our control library components
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里您可以找到其参数。 另请注意,ASP.NET 编译工具不适用于早于 ASP.NET 2.0 版的 ASP.NET 版本。
对于 .NET 2.0,这些是您需要执行的步骤
我认为对于其他版本的.NET,您必须 cd 到相应的目录。
另请阅读此。 您可能会发现它很有用。
Here you can find its parameters. Also note that ASP.NET Compilation tool is not available with versions of ASP.NET earlier than ASP.NET version 2.0.
For .NET 2.0 these are the steps you need to do
I think that for other versions of .NET you have to cd to corresponding directory.
Also read this. You might find it useful.