Doconut の更新方法

バージョン 1.0.5.2 以下から更新するには、以下の手順に従ってください。

.NET Framework 4.7

Web.config の構成

ビューアは HttpHandler を web.config ファイルで登録する必要があります。IIS のバージョンに応じて、web.config に定義された次のセクションを使用して行うことができます。

Below IIS 7
<httpHandlers>
  <add verb="GET,POST" path="DocImage.axd" type="Doconut.DocImageHandler, Doconut" />
</httpHandlers>
IIS 7 and above
<handlers>
  <add name="DocImage" verb="GET,POST" path="DocImage.axd" type="Doconut.DocImageHandler, Doconut" />
</handlers>

ASPX ページの登録を更新する

ASPX ページ内のアセンブリ登録を変更してください。

Old
<%@ Register Assembly="DocumentViewer" Namespace="DotnetDaddy.DocumentViewer" TagPrefix="asp" %>
New
<%@ Register Assembly="Doconut" Namespace="Doconut" TagPrefix="asp" %>

コントロールタグを更新する

コントロールタグを DocViewer から Viewer に更新してください。

Old
<asp:DocViewer ID="ctlDoc" runat="server"/>
New
<asp:Viewer ID="ctlDoc" runat="server"/>

名前空間を更新する

Doconut 24.3.0 は名前空間の名前を変更しました。新しい DLL を追加してください: Doconut.dll, Doconut.Formats.dll, Doconut.Configs.dll, Doconut.Clouds.dll.

New Usings
using Doconut;
using Doconut.Configs;
using Doconut.Formats;
using Doconut.Clouds;
Initialization
var viewer = new Viewer();

パッケージ依存関係

  • Newtonsoft.Json 13.0.3
  • System.Text.Encoding.CodePages 6.0.0
  • System.Text.Json 6.0.0

.NET Standard / Core

名前空間を更新する

Doconut 24.3.0 は名前空間の名前を変更しました。新しい DLL を追加してください: Doconut.dll, Doconut.Formats.dll, Doconut.Configs.dll, Doconut.Clouds.dll.

New Usings
using Doconut;
using Doconut.Configs;
using Doconut.Formats;
using Doconut.Clouds;
Initialization
var viewer = new Viewer();

パッケージ依存関係

  • Microsoft.Extensions.Caching.Abstractions 3.1.10
  • SkiaSharp 2.88.6
  • Newtonsoft.Json 13.0.3
  • System.Drawing.Common 6.0.0
  • System.Text.Json 6.0.0
  • System.Text.Encoding.CodePages 7.0.0

.NET 6 以上

名前空間を更新する

Doconut 24.3.0 は名前空間の名前を変更しました。新しい DLL を追加してください: Doconut.dll, Doconut.Formats.dll, Doconut.Configs.dll, Doconut.Clouds.dll.

New Usings
using Doconut;
using Doconut.Configs;
using Doconut.Formats;
using Doconut.Clouds;
Initialization
var viewer = new Viewer();

パッケージ依存関係

  • Microsoft.Extensions.Caching.Abstractions 3.1.10
  • Newtonsoft.Json 13.0.3
  • SkiaSharp 2.88.6
  • System.Drawing.Common 7.0.0
  • System.Text.Encoding.CodePages 7.0.0