Як оновити 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 or higher

Оновити простори імен

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