StateChanged;
11 | public void Invoke([In, MarshalAs(UnmanagedType.Interface)] ICoreWebView2DownloadOperation sender, [In, MarshalAs(UnmanagedType.IUnknown)] object args)
12 | {
13 | OnStateChanged(sender, args);
14 | }
15 |
16 | private void OnStateChanged(ICoreWebView2DownloadOperation sender, object obj)
17 | {
18 | StateChanged?.Invoke(sender, new WebView2EventArgs(sender, obj));
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/HeaderItem.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public class HeaderItem
4 | {
5 | public HeaderItem(string name, string value)
6 | {
7 | this.Name = name;
8 | this.Value = value;
9 | }
10 | public string Name{get;}
11 | public string Value{get;}
12 | }
13 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/IMonitoringAction.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public interface IMonitoringAction
4 | {
5 | string MonitoringUrl { get; }
6 | string MonitoringFolder { get; }
7 | bool IsEnabled { get; }
8 |
9 | string[] FielExtensions { get; }
10 |
11 | bool CanExcecute(string url);
12 |
13 | bool Run(RequestInfo requestInfo, out ResponseInfo responseInfo);
14 | }
15 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/ImageFormat.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum ImageFormat
4 | {
5 | Png,
6 | Jpeg
7 | }
8 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/KeyEventType.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum KeyEventType
4 | {
5 | KeyDown,
6 | KeyUp,
7 | SystemKeyDown,
8 | SystemKeyUp,
9 | }
10 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/MoveFocusReason.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum MoveFocusReason
4 | {
5 | Programatic,
6 | Next,
7 | Previous,
8 | }
9 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/PermissionState.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum PermissionState
4 | {
5 | Default,
6 | Allow,
7 | Deny,
8 | }
9 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/PermissionType.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum PermissionType
4 | {
5 | UnknownPermission,
6 | Microphone,
7 | Camera,
8 | Geolocation,
9 | Notifications,
10 | OtherSensors,
11 | ClipboardRead,
12 | }
13 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/PhysicalKeyStatus.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 |
3 | // ReSharper disable once CheckNamespace
4 | namespace Diga.WebView2.Wrapper
5 | {
6 | public class PhysicalKeyStatus
7 | {
8 | private readonly COREWEBVIEW2_PHYSICAL_KEY_STATUS _Status;
9 | public PhysicalKeyStatus(COREWEBVIEW2_PHYSICAL_KEY_STATUS status)
10 | {
11 | this._Status = status;
12 | }
13 |
14 |
15 | public uint RepeatCount => this._Status.RepeatCount;
16 | public uint ScanCode => this._Status.ScanCode;
17 | public int IsExtendedKey => this._Status.IsExtendedKey;
18 | public int IsMenuKeyDown => this._Status.IsMenuKeyDown;
19 | public int WasKeyDown => this._Status.WasKeyDown;
20 | public int IsKeyReleased => this._Status.IsKeyReleased;
21 | }
22 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/ProcessFailedKind.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum ProcessFailedKind
4 | {
5 | BrowserProcessExited,
6 | RenderProcessExited,
7 | RenderProcessUnresponsive,
8 | FrameRenderProcessExited,
9 | UtilityProcessExited,
10 | SandboxHelperProcessExited,
11 | GpuProcessExited,
12 | PpapiPluginProcessExited,
13 | PpapiBrokerProcessExited,
14 | UnknownProcessExited
15 | }
16 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/ResourceContext.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum ResourceContext
4 | {
5 | All,
6 | Document,
7 | Stylesheet,
8 | Image,
9 | Media,
10 | Font,
11 | Script,
12 | XmlHttpRequest,
13 | Fetch,
14 | TextTrack,
15 | EventSource,
16 | Websocket,
17 | Manifest,
18 | SignedExchange,
19 | Ping,
20 | CspViolationReport,
21 | Other,
22 | }
23 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/ScriptDialogKind.cs:
--------------------------------------------------------------------------------
1 | namespace Diga.WebView2.Wrapper
2 | {
3 | public enum ScriptDialogKind
4 | {
5 | Alert,
6 | Confirm,
7 | Prompt,
8 | BeforeUnload
9 | }
10 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/Types/DispParams.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.InteropServices;
3 |
4 | namespace Diga.WebView2.Wrapper.Types
5 | {
6 | [StructLayout(LayoutKind.Sequential)]
7 | public sealed class DispParams
8 | {
9 | public IntPtr rgvarg;
10 | public IntPtr rgdispidNamedArgs;
11 | [MarshalAs(UnmanagedType.U4)]
12 | public int cArgs;
13 | [MarshalAs(UnmanagedType.U4)]
14 | public int cNamedArgs;
15 | }
16 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/Types/ExcepInfo.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.InteropServices;
3 |
4 | namespace Diga.WebView2.Wrapper.Types
5 | {
6 | [StructLayout(LayoutKind.Sequential)]
7 | public class ExcepInfo
8 | {
9 | public IntPtr pvReserved = IntPtr.Zero;
10 | public IntPtr pfnDeferredFillIn = IntPtr.Zero;
11 | [MarshalAs(UnmanagedType.U2)]
12 | public short wCode;
13 | [MarshalAs(UnmanagedType.U2)]
14 | public short wReserved;
15 | [MarshalAs(UnmanagedType.BStr)]
16 | public string bstrSource;
17 | [MarshalAs(UnmanagedType.BStr)]
18 | public string bstrDescription;
19 | [MarshalAs(UnmanagedType.BStr)]
20 | public string bstrHelpFile;
21 | [MarshalAs(UnmanagedType.U4)]
22 | public int dwHelpContext;
23 | [MarshalAs(UnmanagedType.U4)]
24 | public int scode;
25 | }
26 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/Types/ProcessorArch.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.InteropServices;
3 |
4 | // ReSharper disable once CheckNamespace
5 | namespace Diga.WebView2.Wrapper.Types
6 | {
7 | internal static class ProcessorArch
8 | {
9 | public static bool Is64BitProcess => IntPtr.Size == 8;
10 |
11 | public static Architecture GetArchitecture()
12 | {
13 | return RuntimeInformation.ProcessArchitecture;
14 | }
15 | }
16 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebResourceContext.cs:
--------------------------------------------------------------------------------
1 | // ReSharper disable once CheckNamespace
2 |
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 |
7 |
8 | public enum WebResourceContext
9 | {
10 | All,
11 | Document,
12 | Stylesheet,
13 | Image,
14 | Media,
15 | Font,
16 | Script,
17 | XmlHttpRequest,
18 | Fetch,
19 | TextTrack,
20 | EventSource,
21 | Websocket,
22 | Manifest,
23 | SignedExchange,
24 | Ping,
25 | CspViolationReport,
26 | Other,
27 | }
28 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebView2ControllerOptions.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 | using Diga.WebView2.Wrapper.Implementation;
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 | public class WebView2ControllerOptions : WebView2ControllerOptions2Interface
7 | {
8 | public WebView2ControllerOptions(ICoreWebView2ControllerOptions2 options):base(options)
9 | {
10 |
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebView2Deferral.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 | using Diga.WebView2.Wrapper.Implementation;
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 | public class WebView2Deferral : WebView2DeferralInterface
7 | {
8 | internal WebView2Deferral(ICoreWebView2Deferral deferral):base(deferral)
9 | {
10 |
11 | }
12 |
13 | }
14 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebView2ExecuteScriptResult.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 | using Diga.WebView2.Wrapper.Implementation;
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 | public class WebView2ExecuteScriptResult: WebView2ExecuteScriptResultInterface
7 | {
8 | public WebView2ExecuteScriptResult(ICoreWebView2ExecuteScriptResult result):base(result)
9 | {
10 |
11 | }
12 |
13 | new public WebView2ScriptException Exception => new WebView2ScriptException(base.Exception);
14 | }
15 |
16 |
17 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebView2PrintSettings.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 | using Diga.WebView2.Wrapper.Implementation;
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 |
7 | public class WebView2PrintSettings : WebView2PrintSettingsInterface
8 | {
9 |
10 | public WebView2PrintSettings(ICoreWebView2PrintSettings printSettings):base(printSettings)
11 | {
12 |
13 | }
14 | }
15 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebView2Profile.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 | using Diga.WebView2.Wrapper.Implementation;
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 | public class WebView2Profile : WebView2Profile8Interface
7 | {
8 | public WebView2Profile(ICoreWebView2Profile8 profile):base(profile)
9 | {
10 |
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WebView2ScriptException.cs:
--------------------------------------------------------------------------------
1 | using Diga.WebView2.Interop;
2 | using Diga.WebView2.Wrapper.Implementation;
3 |
4 | namespace Diga.WebView2.Wrapper
5 | {
6 | public class WebView2ScriptException: WebView2ScriptExceptionInterface
7 | {
8 | public WebView2ScriptException(ICoreWebView2ScriptException exception):base(exception)
9 | {
10 |
11 | }
12 |
13 | }
14 |
15 |
16 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/WrapperSign.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/WrapperSign.snk
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/interop/BrowserVersionState.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Diga.WebView2.Wrapper.interop
4 | {
5 | [Flags]
6 | internal enum BrowserVersionState:int
7 | {
8 | Older = -1,
9 | Equal = 0,
10 | Newer = 1
11 | }
12 | }
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/logo.png
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/Diga.WebView2.Wrapper.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | %(RecursiveDir)%(FileName)%(Extension)
7 | PreserveNewest
8 |
9 |
10 |
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.dll
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.exp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.exp
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.lib
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/arm64/Diga.WebView2.Native.pdb
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.dll
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.exp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.exp
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.lib
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x64/Diga.WebView2.Native.pdb
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.dll
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.exp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.exp
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.lib
--------------------------------------------------------------------------------
/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/src/Diga.WebView2.Wrapper/native/x86/Diga.WebView2.Native.pdb
--------------------------------------------------------------------------------
/wwwroot/WebViewWebAssembly.styles.css.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/WebViewWebAssembly.styles.css.br
--------------------------------------------------------------------------------
/wwwroot/WebViewWebAssembly.styles.css.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/WebViewWebAssembly.styles.css.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.t8j9bq7eug.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.t8j9bq7eug.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.t8j9bq7eug.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.t8j9bq7eug.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.t8j9bq7eug.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.t8j9bq7eug.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.8bgf3h7zzy.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.8bgf3h7zzy.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.8bgf3h7zzy.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.8bgf3h7zzy.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.8bgf3h7zzy.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.8bgf3h7zzy.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.q408sok5jb.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.q408sok5jb.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.q408sok5jb.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.q408sok5jb.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.AspNetCore.Components.q408sok5jb.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.AspNetCore.Components.q408sok5jb.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.y48vvcgtr7.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.y48vvcgtr7.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.y48vvcgtr7.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.y48vvcgtr7.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.y48vvcgtr7.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.y48vvcgtr7.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.e9vxb7i3dh.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.e9vxb7i3dh.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.e9vxb7i3dh.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.e9vxb7i3dh.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.e9vxb7i3dh.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.e9vxb7i3dh.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.j6zcnzlj73.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.j6zcnzlj73.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.j6zcnzlj73.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.j6zcnzlj73.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Configuration.j6zcnzlj73.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Configuration.j6zcnzlj73.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.56xaoz8j7u.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.56xaoz8j7u.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.56xaoz8j7u.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.56xaoz8j7u.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.56xaoz8j7u.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.56xaoz8j7u.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.pxt8fnexc7.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.pxt8fnexc7.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.pxt8fnexc7.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.pxt8fnexc7.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.pxt8fnexc7.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.pxt8fnexc7.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.pi7fq99022.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.pi7fq99022.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.pi7fq99022.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.pi7fq99022.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.pi7fq99022.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.pi7fq99022.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Logging.hnku8105c3.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Logging.hnku8105c3.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Logging.hnku8105c3.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Logging.hnku8105c3.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Logging.hnku8105c3.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Logging.hnku8105c3.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Options.2shovcm8i6.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Options.2shovcm8i6.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Options.2shovcm8i6.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Options.2shovcm8i6.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Options.2shovcm8i6.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Options.2shovcm8i6.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Primitives.ysbak4uz1g.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Primitives.ysbak4uz1g.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Primitives.ysbak4uz1g.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Primitives.ysbak4uz1g.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.Extensions.Primitives.ysbak4uz1g.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.Extensions.Primitives.ysbak4uz1g.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.8eb000j8w7.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.8eb000j8w7.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.8eb000j8w7.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.8eb000j8w7.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.8eb000j8w7.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.8eb000j8w7.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.JSInterop.pfhlxcfl7p.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.JSInterop.pfhlxcfl7p.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.JSInterop.pfhlxcfl7p.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.JSInterop.pfhlxcfl7p.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/Microsoft.JSInterop.pfhlxcfl7p.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/Microsoft.JSInterop.pfhlxcfl7p.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.8n7v589bit.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.8n7v589bit.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.8n7v589bit.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.8n7v589bit.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.8n7v589bit.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.8n7v589bit.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.Concurrent.a0m9n8g3tx.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.Concurrent.a0m9n8g3tx.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.Concurrent.a0m9n8g3tx.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.Concurrent.a0m9n8g3tx.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.Concurrent.a0m9n8g3tx.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.Concurrent.a0m9n8g3tx.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.Immutable.3cpzfi67kv.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.Immutable.3cpzfi67kv.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.Immutable.3cpzfi67kv.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.Immutable.3cpzfi67kv.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Collections.Immutable.3cpzfi67kv.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Collections.Immutable.3cpzfi67kv.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.ComponentModel.3zv8xfb1e2.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.ComponentModel.3zv8xfb1e2.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.ComponentModel.3zv8xfb1e2.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.ComponentModel.3zv8xfb1e2.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.ComponentModel.3zv8xfb1e2.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.ComponentModel.3zv8xfb1e2.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Console.0ar590w134.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Console.0ar590w134.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Console.0ar590w134.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Console.0ar590w134.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Console.0ar590w134.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Console.0ar590w134.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Diagnostics.DiagnosticSource.2xmt08big5.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Diagnostics.DiagnosticSource.2xmt08big5.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Diagnostics.DiagnosticSource.2xmt08big5.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Diagnostics.DiagnosticSource.2xmt08big5.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Diagnostics.DiagnosticSource.2xmt08big5.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Diagnostics.DiagnosticSource.2xmt08big5.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.IO.Pipelines.xec0hsdhj9.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.IO.Pipelines.xec0hsdhj9.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.IO.Pipelines.xec0hsdhj9.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.IO.Pipelines.xec0hsdhj9.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.IO.Pipelines.xec0hsdhj9.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.IO.Pipelines.xec0hsdhj9.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Linq.n52o776mdy.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Linq.n52o776mdy.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Linq.n52o776mdy.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Linq.n52o776mdy.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Linq.n52o776mdy.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Linq.n52o776mdy.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Memory.ym4o9q9dig.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Memory.ym4o9q9dig.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Memory.ym4o9q9dig.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Memory.ym4o9q9dig.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Memory.ym4o9q9dig.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Memory.ym4o9q9dig.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Http.Json.6dnfc14sa5.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Http.Json.6dnfc14sa5.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Http.Json.6dnfc14sa5.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Http.Json.6dnfc14sa5.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Http.Json.6dnfc14sa5.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Http.Json.6dnfc14sa5.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Http.f8xoqp4kg9.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Http.f8xoqp4kg9.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Http.f8xoqp4kg9.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Http.f8xoqp4kg9.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Http.f8xoqp4kg9.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Http.f8xoqp4kg9.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Primitives.urln2d08lx.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Primitives.urln2d08lx.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Primitives.urln2d08lx.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Primitives.urln2d08lx.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Net.Primitives.urln2d08lx.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Net.Primitives.urln2d08lx.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Private.CoreLib.tzgwpm15m5.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Private.CoreLib.tzgwpm15m5.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Private.CoreLib.tzgwpm15m5.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Private.CoreLib.tzgwpm15m5.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Private.CoreLib.tzgwpm15m5.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Private.CoreLib.tzgwpm15m5.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Private.Uri.1t814wh6wy.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Private.Uri.1t814wh6wy.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Private.Uri.1t814wh6wy.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Private.Uri.1t814wh6wy.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Private.Uri.1t814wh6wy.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Private.Uri.1t814wh6wy.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.y0r344ylzs.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.y0r344ylzs.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.y0r344ylzs.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.y0r344ylzs.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.y0r344ylzs.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.y0r344ylzs.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Runtime.gumgzetwph.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Runtime.gumgzetwph.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Runtime.gumgzetwph.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Runtime.gumgzetwph.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Runtime.gumgzetwph.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Runtime.gumgzetwph.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.Encodings.Web.nppv1pnh0y.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.Encodings.Web.nppv1pnh0y.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.Encodings.Web.nppv1pnh0y.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.Encodings.Web.nppv1pnh0y.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.Encodings.Web.nppv1pnh0y.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.Encodings.Web.nppv1pnh0y.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.Json.w46w0yswxv.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.Json.w46w0yswxv.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.Json.w46w0yswxv.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.Json.w46w0yswxv.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.Json.w46w0yswxv.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.Json.w46w0yswxv.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.RegularExpressions.14u2ss3t9f.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.RegularExpressions.14u2ss3t9f.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.RegularExpressions.14u2ss3t9f.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.RegularExpressions.14u2ss3t9f.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/System.Text.RegularExpressions.14u2ss3t9f.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/System.Text.RegularExpressions.14u2ss3t9f.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/WebViewWebAssembly.eo2rrrwsij.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/WebViewWebAssembly.eo2rrrwsij.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/WebViewWebAssembly.eo2rrrwsij.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/WebViewWebAssembly.eo2rrrwsij.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/WebViewWebAssembly.eo2rrrwsij.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/WebViewWebAssembly.eo2rrrwsij.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/blazor.boot.json.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/blazor.boot.json.br
--------------------------------------------------------------------------------
/wwwroot/_framework/blazor.boot.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/blazor.boot.json.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/blazor.webassembly.js.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/blazor.webassembly.js.br
--------------------------------------------------------------------------------
/wwwroot/_framework/blazor.webassembly.js.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/blazor.webassembly.js.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.js.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.js.br
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.js.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.js.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.native.eb4c4w8j9a.js.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.native.eb4c4w8j9a.js.br
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.native.eb4c4w8j9a.js.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.native.eb4c4w8j9a.js.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.native.kkcvyl94vm.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.native.kkcvyl94vm.wasm
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.native.kkcvyl94vm.wasm.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.native.kkcvyl94vm.wasm.br
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.native.kkcvyl94vm.wasm.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.native.kkcvyl94vm.wasm.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.runtime.rubq0v1yiy.js.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.runtime.rubq0v1yiy.js.br
--------------------------------------------------------------------------------
/wwwroot/_framework/dotnet.runtime.rubq0v1yiy.js.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/dotnet.runtime.rubq0v1yiy.js.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.br
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_CJK.tjcz0u77k5.dat.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.br
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_EFIGS.tptq2av103.dat.gz
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.br
--------------------------------------------------------------------------------
/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/_framework/icudt_no_CJK.lfu7j35m59.dat.gz
--------------------------------------------------------------------------------
/wwwroot/css/app.css.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/css/app.css.br
--------------------------------------------------------------------------------
/wwwroot/css/app.css.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/css/app.css.gz
--------------------------------------------------------------------------------
/wwwroot/css/bootstrap/bootstrap.min.css.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/css/bootstrap/bootstrap.min.css.br
--------------------------------------------------------------------------------
/wwwroot/css/bootstrap/bootstrap.min.css.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/css/bootstrap/bootstrap.min.css.gz
--------------------------------------------------------------------------------
/wwwroot/css/bootstrap/bootstrap.min.css.map.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/css/bootstrap/bootstrap.min.css.map.br
--------------------------------------------------------------------------------
/wwwroot/css/bootstrap/bootstrap.min.css.map.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/css/bootstrap/bootstrap.min.css.map.gz
--------------------------------------------------------------------------------
/wwwroot/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/favicon.png
--------------------------------------------------------------------------------
/wwwroot/frame/test_frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/wwwroot/icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/icon-192.png
--------------------------------------------------------------------------------
/wwwroot/index.html.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/index.html.br
--------------------------------------------------------------------------------
/wwwroot/index.html.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/index.html.gz
--------------------------------------------------------------------------------
/wwwroot/mp3test/test1.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/mp3test/test1.mp3
--------------------------------------------------------------------------------
/wwwroot/mp3test/test2.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/mp3test/test2.mp3
--------------------------------------------------------------------------------
/wwwroot/mp3test/testmp3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/wwwroot/permission/test.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Permission
7 |
8 |
9 |
10 | Click the button to get your coordinates.
11 |
12 |
13 |
14 | Note: The geolocation property is not supported in IE8 and earlier versions.
15 |
16 |
17 |
18 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/wwwroot/resources/test.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | TEST
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/wwwroot/sample-data/weather.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "date": "2022-01-06",
4 | "temperatureC": 1,
5 | "summary": "Freezing"
6 | },
7 | {
8 | "date": "2022-01-07",
9 | "temperatureC": 14,
10 | "summary": "Bracing"
11 | },
12 | {
13 | "date": "2022-01-08",
14 | "temperatureC": -13,
15 | "summary": "Freezing"
16 | },
17 | {
18 | "date": "2022-01-09",
19 | "temperatureC": -16,
20 | "summary": "Balmy"
21 | },
22 | {
23 | "date": "2022-01-10",
24 | "temperatureC": -2,
25 | "summary": "Chilly"
26 | }
27 | ]
28 |
--------------------------------------------------------------------------------
/wwwroot/sample-data/weather.json.br:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/sample-data/weather.json.br
--------------------------------------------------------------------------------
/wwwroot/sample-data/weather.json.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ITAgnesmeyer/Diga.WebView2/34af0ab7ebcf2e90c5a3e8edcbd299e264d27b67/wwwroot/sample-data/weather.json.gz
--------------------------------------------------------------------------------