如何在没有 web.config 的情况下为 aspnet_compiler.exe 指定 CompilerVersion?

发布于 2024-07-29 20:52:28 字数 893 浏览 5 评论 0原文

当您预编译不包含 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.configs for our control library components

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

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

发布评论

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

评论(1

梦萦几度 2024-08-05 20:52:28

在这里您可以找到其参数。 另请注意,ASP.NET 编译工具不适用于早于 ASP.NET 2.0 版的 ASP.NET 版本。

对于 .NET 2.0,这些是您需要执行的步骤

  • “开始”>“ 运行并输入cmd。
  • set path=%windir%\Microsoft.NET\Framework\v2.0.50727
  • aspnet_compiler –v / –pc:\myproject\testsite c:\testcompile

我认为对于其他版本的.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

  • Start > run and type cmd.
  • set path=%windir%\Microsoft.NET\Framework\v2.0.50727
  • aspnet_compiler –v / –p c:\myproject\testsite c:\testcompile

I think that for other versions of .NET you have to cd to corresponding directory.

Also read this. You might find it useful.

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