6

.NET 2.0 Web サイトの web.config を .NET 3.5 にするには、最低限何を追加する必要がありますか?

Visual Studio はすべての構成セクションとスクリプト ハンドラーを追加しますが、それらを使用していない場合、それらは本当に必要なのでしょうか?

.NET 2.0 の web.config を 3.5 に「アップグレード」するコマンド ライン ツールはありますか?

4

4 に答える 4

9

There is a good description of the 3.5 web.config available here: http://www.4guysfromrolla.com/articles/121207-1.aspx

The assemblies and config sections are important because they tell the runtime to use the new 3.5 dlls instead of the 2.0 dlls

The codedom section tells the compiler to use 3.5.

If you're not using ASP.Net Ajax you can probably skip the rest. I've never tested that though.

于 2008-08-29T04:36:43.890 に答える
1

サーバー上のすべてのサイトをアップグレードする場合は、machine.configに変更を加えることができます。

于 2008-08-29T17:47:52.417 に答える
1

これらの答えのどちらも決定的なものではないと思います。4guysfromrolla のリファレンスが役立ちます。

.NET 3.5 を 100 以上のサイトに展開するのは大変です。サーバーを新しいフレームワークにアップグレードするだけではなく、各サイトの web.config をアップグレードする必要があります。私が知る限り、それを行うためのコマンド ライン ツールはありません。

于 2008-08-29T16:38:01.023 に答える
0

It depends on which features you want to include. Most of the 3.5 ASP.NET extensions are optional. You will want to include the assembly for System.Core and System.Xml.Linq. You will also to add compiler support for C# 3.0 if you plan to use that in your code behind. If you're deploying to IIS 7 there are HTTP handlers for the ASP.NET extensions and script modules.

于 2008-08-29T04:41:36.390 に答える