├── .dockerignore ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── WebActuator.sln ├── examples ├── ActuatorApp │ ├── .vs │ │ └── ActuatorApp │ │ │ └── v17 │ │ │ └── .suo │ ├── ActuatorApp.sln │ └── ActuatorApp │ │ ├── .vs │ │ └── ActuatorApp.App │ │ │ └── FileContentIndex │ │ │ ├── 2a7cf10e-3704-43f3-9ab2-54e4e17f6ee8.vsidx │ │ │ ├── c3ab8664-4fb8-49d7-b307-ebda253c95f1.vsidx │ │ │ └── read.lock │ │ ├── ActuatorApp.csproj │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Main.razor │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MauiProgram.cs │ │ ├── Pages │ │ └── Home.razor │ │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ └── OpenSans-Regular.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── Raw │ │ │ └── AboutAssets.txt │ │ └── Splash │ │ │ └── splash.svg │ │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ │ ├── _Imports.razor │ │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ ├── favicon.ico │ │ └── index.html ├── Examples.Server │ ├── Examples.Server.csproj │ ├── Pages │ │ └── _Host.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── axios.min.js │ │ ├── csharp.png │ │ ├── css │ │ └── site.css │ │ ├── github.png │ │ └── icon-512.png ├── Examples.Service │ ├── .config │ │ └── dotnet-tools.json │ ├── Dockerfile │ ├── Examples.Service.csproj │ ├── Examples.Service.csproj.user │ ├── Models │ │ └── CreateCodeModel.cs │ ├── MonacoRoslynCompletionProvider │ │ ├── Api │ │ │ ├── CodeCheckRequest.cs │ │ │ ├── CodeCheckResult.cs │ │ │ ├── CodeCheckSeverity.cs │ │ │ ├── HoverInfoBuilder.cs │ │ │ ├── HoverInfoRequest.cs │ │ │ ├── HoverInfoResult.cs │ │ │ ├── IRequest.cs │ │ │ ├── IResponse.cs │ │ │ ├── InvocationContext.cs │ │ │ ├── SignatureHelpRequest.cs │ │ │ ├── SignatureHelpResult.cs │ │ │ ├── TabCompletionRequest.cs │ │ │ └── TabCompletionResult.cs │ │ ├── CodeCheckProvider.cs │ │ ├── CompletionDocument.cs │ │ ├── CompletionWorkspace.cs │ │ ├── CompletitionRequestHandler.cs │ │ ├── HoverInformationProvider.cs │ │ ├── RoslynPad │ │ │ └── DeferredQuickInfoContentProvider.cs │ │ ├── SignatureHelpProvider.cs │ │ └── TabCompletionProvider.cs │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── FolderProfile.pubxml │ │ │ └── FolderProfile.pubxml.user │ │ └── launchSettings.json │ ├── System.Text.Json.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── docker-build.bat │ └── wwwroot │ │ └── assembly │ │ ├── .version │ │ ├── Microsoft.AspNetCore.Antiforgery.dll │ │ ├── Microsoft.AspNetCore.Antiforgery.xml │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Authentication.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Authentication.Cookies.dll │ │ ├── Microsoft.AspNetCore.Authentication.Cookies.xml │ │ ├── Microsoft.AspNetCore.Authentication.Core.dll │ │ ├── Microsoft.AspNetCore.Authentication.Core.xml │ │ ├── Microsoft.AspNetCore.Authentication.OAuth.dll │ │ ├── Microsoft.AspNetCore.Authentication.OAuth.xml │ │ ├── Microsoft.AspNetCore.Authentication.dll │ │ ├── Microsoft.AspNetCore.Authentication.xml │ │ ├── Microsoft.AspNetCore.Authorization.Policy.dll │ │ ├── Microsoft.AspNetCore.Authorization.Policy.xml │ │ ├── Microsoft.AspNetCore.Authorization.dll │ │ ├── Microsoft.AspNetCore.Authorization.xml │ │ ├── Microsoft.AspNetCore.Components.Authorization.dll │ │ ├── Microsoft.AspNetCore.Components.Authorization.xml │ │ ├── Microsoft.AspNetCore.Components.Forms.dll │ │ ├── Microsoft.AspNetCore.Components.Forms.xml │ │ ├── Microsoft.AspNetCore.Components.Server.dll │ │ ├── Microsoft.AspNetCore.Components.Server.xml │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ ├── Microsoft.AspNetCore.Components.Web.xml │ │ ├── Microsoft.AspNetCore.Components.dll │ │ ├── Microsoft.AspNetCore.Components.xml │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Connections.Abstractions.xml │ │ ├── Microsoft.AspNetCore.CookiePolicy.dll │ │ ├── Microsoft.AspNetCore.CookiePolicy.xml │ │ ├── Microsoft.AspNetCore.Cors.dll │ │ ├── Microsoft.AspNetCore.Cors.xml │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.xml │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.xml │ │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.dll │ │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.xml │ │ ├── Microsoft.AspNetCore.DataProtection.Extensions.dll │ │ ├── Microsoft.AspNetCore.DataProtection.Extensions.xml │ │ ├── Microsoft.AspNetCore.DataProtection.dll │ │ ├── Microsoft.AspNetCore.DataProtection.xml │ │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.HealthChecks.xml │ │ ├── Microsoft.AspNetCore.Diagnostics.dll │ │ ├── Microsoft.AspNetCore.Diagnostics.xml │ │ ├── Microsoft.AspNetCore.HostFiltering.dll │ │ ├── Microsoft.AspNetCore.HostFiltering.xml │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Hosting.Server.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Hosting.dll │ │ ├── Microsoft.AspNetCore.Hosting.xml │ │ ├── Microsoft.AspNetCore.Html.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Html.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Http.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.dll │ │ ├── Microsoft.AspNetCore.Http.Connections.Common.xml │ │ ├── Microsoft.AspNetCore.Http.Connections.dll │ │ ├── Microsoft.AspNetCore.Http.Connections.xml │ │ ├── Microsoft.AspNetCore.Http.Extensions.dll │ │ ├── Microsoft.AspNetCore.Http.Extensions.xml │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ ├── Microsoft.AspNetCore.Http.Features.xml │ │ ├── Microsoft.AspNetCore.Http.Results.dll │ │ ├── Microsoft.AspNetCore.Http.Results.xml │ │ ├── Microsoft.AspNetCore.Http.dll │ │ ├── Microsoft.AspNetCore.Http.xml │ │ ├── Microsoft.AspNetCore.HttpLogging.dll │ │ ├── Microsoft.AspNetCore.HttpLogging.xml │ │ ├── Microsoft.AspNetCore.HttpOverrides.dll │ │ ├── Microsoft.AspNetCore.HttpOverrides.xml │ │ ├── Microsoft.AspNetCore.HttpsPolicy.dll │ │ ├── Microsoft.AspNetCore.HttpsPolicy.xml │ │ ├── Microsoft.AspNetCore.Identity.dll │ │ ├── Microsoft.AspNetCore.Identity.xml │ │ ├── Microsoft.AspNetCore.Localization.Routing.dll │ │ ├── Microsoft.AspNetCore.Localization.Routing.xml │ │ ├── Microsoft.AspNetCore.Localization.dll │ │ ├── Microsoft.AspNetCore.Localization.xml │ │ ├── Microsoft.AspNetCore.Metadata.dll │ │ ├── Microsoft.AspNetCore.Metadata.xml │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Mvc.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.dll │ │ ├── Microsoft.AspNetCore.Mvc.ApiExplorer.xml │ │ ├── Microsoft.AspNetCore.Mvc.Core.dll │ │ ├── Microsoft.AspNetCore.Mvc.Core.xml │ │ ├── Microsoft.AspNetCore.Mvc.Cors.dll │ │ ├── Microsoft.AspNetCore.Mvc.Cors.xml │ │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.dll │ │ ├── Microsoft.AspNetCore.Mvc.DataAnnotations.xml │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Json.xml │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.dll │ │ ├── Microsoft.AspNetCore.Mvc.Formatters.Xml.xml │ │ ├── Microsoft.AspNetCore.Mvc.Localization.dll │ │ ├── Microsoft.AspNetCore.Mvc.Localization.xml │ │ ├── Microsoft.AspNetCore.Mvc.Razor.dll │ │ ├── Microsoft.AspNetCore.Mvc.Razor.xml │ │ ├── Microsoft.AspNetCore.Mvc.RazorPages.dll │ │ ├── Microsoft.AspNetCore.Mvc.RazorPages.xml │ │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.dll │ │ ├── Microsoft.AspNetCore.Mvc.TagHelpers.xml │ │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.dll │ │ ├── Microsoft.AspNetCore.Mvc.ViewFeatures.xml │ │ ├── Microsoft.AspNetCore.Mvc.dll │ │ ├── Microsoft.AspNetCore.Mvc.xml │ │ ├── Microsoft.AspNetCore.OutputCaching.dll │ │ ├── Microsoft.AspNetCore.RateLimiting.dll │ │ ├── Microsoft.AspNetCore.RateLimiting.xml │ │ ├── Microsoft.AspNetCore.Razor.Runtime.dll │ │ ├── Microsoft.AspNetCore.Razor.Runtime.xml │ │ ├── Microsoft.AspNetCore.Razor.dll │ │ ├── Microsoft.AspNetCore.Razor.xml │ │ ├── Microsoft.AspNetCore.RequestDecompression.dll │ │ ├── Microsoft.AspNetCore.RequestDecompression.xml │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.Abstractions.xml │ │ ├── Microsoft.AspNetCore.ResponseCaching.dll │ │ ├── Microsoft.AspNetCore.ResponseCaching.xml │ │ ├── Microsoft.AspNetCore.ResponseCompression.dll │ │ ├── Microsoft.AspNetCore.ResponseCompression.xml │ │ ├── Microsoft.AspNetCore.Rewrite.dll │ │ ├── Microsoft.AspNetCore.Rewrite.xml │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.dll │ │ ├── Microsoft.AspNetCore.Routing.Abstractions.xml │ │ ├── Microsoft.AspNetCore.Routing.dll │ │ ├── Microsoft.AspNetCore.Routing.xml │ │ ├── Microsoft.AspNetCore.Server.HttpSys.dll │ │ ├── Microsoft.AspNetCore.Server.HttpSys.xml │ │ ├── Microsoft.AspNetCore.Server.IIS.dll │ │ ├── Microsoft.AspNetCore.Server.IIS.xml │ │ ├── Microsoft.AspNetCore.Server.IISIntegration.dll │ │ ├── Microsoft.AspNetCore.Server.IISIntegration.xml │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Core.xml │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.xml │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml │ │ ├── Microsoft.AspNetCore.Server.Kestrel.dll │ │ ├── Microsoft.AspNetCore.Server.Kestrel.xml │ │ ├── Microsoft.AspNetCore.Session.dll │ │ ├── Microsoft.AspNetCore.Session.xml │ │ ├── Microsoft.AspNetCore.SignalR.Common.dll │ │ ├── Microsoft.AspNetCore.SignalR.Common.xml │ │ ├── Microsoft.AspNetCore.SignalR.Core.dll │ │ ├── Microsoft.AspNetCore.SignalR.Core.xml │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.dll │ │ ├── Microsoft.AspNetCore.SignalR.Protocols.Json.xml │ │ ├── Microsoft.AspNetCore.SignalR.dll │ │ ├── Microsoft.AspNetCore.SignalR.xml │ │ ├── Microsoft.AspNetCore.StaticFiles.dll │ │ ├── Microsoft.AspNetCore.StaticFiles.xml │ │ ├── Microsoft.AspNetCore.WebSockets.dll │ │ ├── Microsoft.AspNetCore.WebSockets.xml │ │ ├── Microsoft.AspNetCore.WebUtilities.dll │ │ ├── Microsoft.AspNetCore.WebUtilities.xml │ │ ├── Microsoft.AspNetCore.dll │ │ ├── Microsoft.AspNetCore.xml │ │ ├── Microsoft.CSharp.dll │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Caching.Memory.xml │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.xml │ │ ├── Microsoft.Extensions.Configuration.CommandLine.dll │ │ ├── Microsoft.Extensions.Configuration.CommandLine.xml │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.dll │ │ ├── Microsoft.Extensions.Configuration.EnvironmentVariables.xml │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.xml │ │ ├── Microsoft.Extensions.Configuration.Ini.dll │ │ ├── Microsoft.Extensions.Configuration.Ini.xml │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.Json.xml │ │ ├── Microsoft.Extensions.Configuration.KeyPerFile.dll │ │ ├── Microsoft.Extensions.Configuration.KeyPerFile.xml │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.dll │ │ ├── Microsoft.Extensions.Configuration.UserSecrets.xml │ │ ├── Microsoft.Extensions.Configuration.Xml.dll │ │ ├── Microsoft.Extensions.Configuration.Xml.xml │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.Configuration.xml │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyInjection.xml │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.dll │ │ ├── Microsoft.Extensions.Diagnostics.HealthChecks.xml │ │ ├── Microsoft.Extensions.Features.dll │ │ ├── Microsoft.Extensions.Features.xml │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.xml │ │ ├── Microsoft.Extensions.FileProviders.Composite.dll │ │ ├── Microsoft.Extensions.FileProviders.Composite.xml │ │ ├── Microsoft.Extensions.FileProviders.Embedded.dll │ │ ├── Microsoft.Extensions.FileProviders.Embedded.xml │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.xml │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.xml │ │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ │ ├── Microsoft.Extensions.Hosting.Abstractions.xml │ │ ├── Microsoft.Extensions.Hosting.dll │ │ ├── Microsoft.Extensions.Hosting.xml │ │ ├── Microsoft.Extensions.Http.dll │ │ ├── Microsoft.Extensions.Http.xml │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ ├── Microsoft.Extensions.Identity.Core.xml │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ ├── Microsoft.Extensions.Identity.Stores.xml │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ ├── Microsoft.Extensions.Localization.Abstractions.xml │ │ ├── Microsoft.Extensions.Localization.dll │ │ ├── Microsoft.Extensions.Localization.xml │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ ├── Microsoft.Extensions.Logging.Configuration.dll │ │ ├── Microsoft.Extensions.Logging.Configuration.xml │ │ ├── Microsoft.Extensions.Logging.Console.dll │ │ ├── Microsoft.Extensions.Logging.Console.xml │ │ ├── Microsoft.Extensions.Logging.Debug.dll │ │ ├── Microsoft.Extensions.Logging.Debug.xml │ │ ├── Microsoft.Extensions.Logging.EventLog.dll │ │ ├── Microsoft.Extensions.Logging.EventLog.xml │ │ ├── Microsoft.Extensions.Logging.EventSource.dll │ │ ├── Microsoft.Extensions.Logging.EventSource.xml │ │ ├── Microsoft.Extensions.Logging.TraceSource.dll │ │ ├── Microsoft.Extensions.Logging.TraceSource.xml │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Logging.xml │ │ ├── Microsoft.Extensions.ObjectPool.dll │ │ ├── Microsoft.Extensions.ObjectPool.xml │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.dll │ │ ├── Microsoft.Extensions.Options.ConfigurationExtensions.xml │ │ ├── Microsoft.Extensions.Options.DataAnnotations.dll │ │ ├── Microsoft.Extensions.Options.DataAnnotations.xml │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Options.xml │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Extensions.Primitives.xml │ │ ├── Microsoft.Extensions.WebEncoders.dll │ │ ├── Microsoft.Extensions.WebEncoders.xml │ │ ├── Microsoft.JSInterop.dll │ │ ├── Microsoft.JSInterop.xml │ │ ├── Microsoft.NETCore.App.deps.json │ │ ├── Microsoft.NETCore.App.runtimeconfig.json │ │ ├── Microsoft.Net.Http.Headers.dll │ │ ├── Microsoft.Net.Http.Headers.xml │ │ ├── Microsoft.VisualBasic.Core.dll │ │ ├── Microsoft.VisualBasic.dll │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── System.AppContext.dll │ │ ├── System.Buffers.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Configuration.dll │ │ ├── System.Console.dll │ │ ├── System.Core.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Data.DataSetExtensions.dll │ │ ├── System.Data.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Diagnostics.EventLog.dll │ │ ├── System.Diagnostics.EventLog.xml │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Drawing.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Formats.Asn1.dll │ │ ├── System.Formats.Tar.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.Extensions.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.Brotli.dll │ │ ├── System.IO.Compression.FileSystem.dll │ │ ├── System.IO.Compression.Native.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.AccessControl.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipelines.dll │ │ ├── System.IO.Pipelines.xml │ │ ├── System.IO.Pipes.AccessControl.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Memory.dll │ │ ├── System.Net.Http.Json.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.HttpListener.dll │ │ ├── System.Net.Mail.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Quic.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.ServicePoint.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebClient.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebProxy.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.Net.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Private.CoreLib.dll │ │ ├── System.Private.DataContractSerialization.dll │ │ ├── System.Private.Uri.dll │ │ ├── System.Private.Xml.Linq.dll │ │ ├── System.Private.Xml.dll │ │ ├── System.Reflection.DispatchProxy.dll │ │ ├── System.Reflection.Emit.ILGeneration.dll │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ ├── System.Reflection.Emit.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.TypeExtensions.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.JavaScript.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Intrinsics.dll │ │ ├── System.Runtime.Loader.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.Serialization.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Cng.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.Xml.dll │ │ ├── System.Security.Cryptography.Xml.xml │ │ ├── System.Security.Cryptography.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Security.dll │ │ ├── System.ServiceModel.Web.dll │ │ ├── System.ServiceProcess.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── System.Text.Json.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Channels.dll │ │ ├── System.Threading.Overlapped.dll │ │ ├── System.Threading.RateLimiting.dll │ │ ├── System.Threading.RateLimiting.xml │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ ├── System.Threading.Tasks.Extensions.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.Transactions.Local.dll │ │ ├── System.Transactions.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Web.HttpUtility.dll │ │ ├── System.Web.dll │ │ ├── System.Windows.dll │ │ ├── System.Xml.Linq.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.Serialization.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ ├── System.Xml.dll │ │ ├── System.dll │ │ ├── WindowsBase.dll │ │ ├── clretwrc.dll │ │ ├── clrgc.dll │ │ ├── clrjit.dll │ │ ├── coreclr.dll │ │ ├── createdump.exe │ │ ├── hostpolicy.dll │ │ ├── mscordaccore.dll │ │ ├── mscordaccore_x86_x86_7.0.823.31807.dll │ │ ├── mscordbi.dll │ │ ├── mscorlib.dll │ │ ├── mscorrc.dll │ │ ├── msquic.dll │ │ └── netstandard.dll ├── Examples.Shared │ ├── App.razor │ ├── Components │ │ └── Logger.razor │ ├── Examples.Shared.csproj │ ├── MainLayout.razor │ ├── Models │ │ ├── CreateCodeModel.cs │ │ └── StorageFile.cs │ ├── Pages │ │ ├── Index.razor │ │ └── Index.razor.cs │ ├── ServiceCollectionExtensions.cs │ ├── TryJsModule.cs │ ├── _Imports.cs │ ├── _Imports.razor │ └── wwwroot │ │ ├── background.png │ │ ├── css │ │ └── app.css │ │ └── js │ │ └── try.js ├── Examples.Web │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── __global.d.ts │ ├── decode.min.js │ ├── exportManage.js │ ├── index.html │ ├── package.json │ ├── public │ │ ├── _framework │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll │ │ │ ├── Microsoft.AspNetCore.Components.Web.dll.br │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll │ │ │ ├── Microsoft.AspNetCore.Components.WebAssembly.dll.br │ │ │ ├── Microsoft.AspNetCore.Components.dll │ │ │ ├── Microsoft.AspNetCore.Components.dll.br │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll.br │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.CodeAnalysis.dll.br │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll.br │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ │ ├── Microsoft.Extensions.Configuration.Json.dll.br │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll.br │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll.br │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll.br │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll.br │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Logging.dll.br │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Options.dll.br │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll.br │ │ │ ├── Microsoft.JSInterop.WebAssembly.dll │ │ │ ├── Microsoft.JSInterop.WebAssembly.dll.br │ │ │ ├── Microsoft.JSInterop.dll │ │ │ ├── Microsoft.JSInterop.dll.br │ │ │ ├── System.Collections.Concurrent.dll │ │ │ ├── System.Collections.Concurrent.dll.br │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Collections.Immutable.dll.br │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ ├── System.Collections.NonGeneric.dll.br │ │ │ ├── System.Collections.dll │ │ │ ├── System.Collections.dll.br │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ ├── System.ComponentModel.TypeConverter.dll.br │ │ │ ├── System.ComponentModel.dll │ │ │ ├── System.ComponentModel.dll.br │ │ │ ├── System.Console.dll │ │ │ ├── System.Console.dll.br │ │ │ ├── System.Diagnostics.Debug.dll │ │ │ ├── System.Diagnostics.Debug.dll.br │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ ├── System.Diagnostics.StackTrace.dll.br │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ ├── System.Diagnostics.TraceSource.dll.br │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ ├── System.Diagnostics.Tracing.dll.br │ │ │ ├── System.Globalization.dll │ │ │ ├── System.Globalization.dll.br │ │ │ ├── System.IO.Compression.dll │ │ │ ├── System.IO.Compression.dll.br │ │ │ ├── System.IO.FileSystem.dll │ │ │ ├── System.IO.FileSystem.dll.br │ │ │ ├── System.IO.MemoryMappedFiles.dll │ │ │ ├── System.IO.MemoryMappedFiles.dll.br │ │ │ ├── System.Linq.Expressions.dll │ │ │ ├── System.Linq.Expressions.dll.br │ │ │ ├── System.Linq.Queryable.dll │ │ │ ├── System.Linq.Queryable.dll.br │ │ │ ├── System.Linq.dll │ │ │ ├── System.Linq.dll.br │ │ │ ├── System.Memory.dll │ │ │ ├── System.Memory.dll.br │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.dll.br │ │ │ ├── System.Net.Primitives.dll │ │ │ ├── System.Net.Primitives.dll.br │ │ │ ├── System.ObjectModel.dll │ │ │ ├── System.ObjectModel.dll.br │ │ │ ├── System.Private.CoreLib.dll │ │ │ ├── System.Private.CoreLib.dll.br │ │ │ ├── System.Private.Uri.dll │ │ │ ├── System.Private.Uri.dll.br │ │ │ ├── System.Private.Xml.Linq.dll │ │ │ ├── System.Private.Xml.Linq.dll.br │ │ │ ├── System.Private.Xml.dll │ │ │ ├── System.Private.Xml.dll.br │ │ │ ├── System.Reactive.dll │ │ │ ├── System.Reactive.dll.br │ │ │ ├── System.Reflection.Metadata.dll │ │ │ ├── System.Reflection.Metadata.dll.br │ │ │ ├── System.Reflection.Primitives.dll │ │ │ ├── System.Reflection.Primitives.dll.br │ │ │ ├── System.Resources.ResourceManager.dll │ │ │ ├── System.Resources.ResourceManager.dll.br │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll.br │ │ │ ├── System.Runtime.Extensions.dll │ │ │ ├── System.Runtime.Extensions.dll.br │ │ │ ├── System.Runtime.InteropServices.JavaScript.dll │ │ │ ├── System.Runtime.InteropServices.JavaScript.dll.br │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll.br │ │ │ ├── System.Runtime.InteropServices.dll │ │ │ ├── System.Runtime.InteropServices.dll.br │ │ │ ├── System.Runtime.Loader.dll │ │ │ ├── System.Runtime.Loader.dll.br │ │ │ ├── System.Runtime.Numerics.dll │ │ │ ├── System.Runtime.Numerics.dll.br │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ ├── System.Runtime.Serialization.Primitives.dll.br │ │ │ ├── System.Runtime.dll │ │ │ ├── System.Runtime.dll.br │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ ├── System.Security.Cryptography.Algorithms.dll.br │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ ├── System.Security.Cryptography.Primitives.dll.br │ │ │ ├── System.Security.Cryptography.dll │ │ │ ├── System.Security.Cryptography.dll.br │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ ├── System.Text.Encoding.CodePages.dll.br │ │ │ ├── System.Text.Encoding.Extensions.dll │ │ │ ├── System.Text.Encoding.Extensions.dll.br │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ ├── System.Text.Encodings.Web.dll.br │ │ │ ├── System.Text.Json.dll │ │ │ ├── System.Text.Json.dll.br │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ ├── System.Text.RegularExpressions.dll.br │ │ │ ├── System.Threading.Tasks.Parallel.dll │ │ │ ├── System.Threading.Tasks.Parallel.dll.br │ │ │ ├── System.Threading.Tasks.dll │ │ │ ├── System.Threading.Tasks.dll.br │ │ │ ├── System.Threading.Thread.dll │ │ │ ├── System.Threading.Thread.dll.br │ │ │ ├── System.Threading.ThreadPool.dll │ │ │ ├── System.Threading.ThreadPool.dll.br │ │ │ ├── System.Threading.dll │ │ │ ├── System.Threading.dll.br │ │ │ ├── System.Xml.Linq.dll │ │ │ ├── System.Xml.Linq.dll.br │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ ├── System.Xml.ReaderWriter.dll.br │ │ │ ├── System.Xml.XDocument.dll │ │ │ ├── System.Xml.XDocument.dll.br │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ ├── System.Xml.XPath.XDocument.dll.br │ │ │ ├── WebActuator.WebAssembly.dll │ │ │ ├── WebActuator.WebAssembly.dll.br │ │ │ ├── WebActuator.dll │ │ │ ├── WebActuator.dll.br │ │ │ ├── blazor.boot.json │ │ │ ├── blazor.boot.json.br │ │ │ ├── blazor.webassembly.js │ │ │ ├── blazor.webassembly.js.br │ │ │ ├── cs │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── de │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── dotnet.7.0.9.0nfnq9g8ju.js │ │ │ ├── dotnet.7.0.9.0nfnq9g8ju.js.br │ │ │ ├── dotnet.timezones.blat │ │ │ ├── dotnet.timezones.blat.br │ │ │ ├── dotnet.wasm │ │ │ ├── dotnet.wasm.br │ │ │ ├── es │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── fr │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── icudt.dat │ │ │ ├── icudt.dat.br │ │ │ ├── icudt_CJK.dat │ │ │ ├── icudt_CJK.dat.br │ │ │ ├── icudt_EFIGS.dat │ │ │ ├── icudt_EFIGS.dat.br │ │ │ ├── icudt_no_CJK.dat │ │ │ ├── icudt_no_CJK.dat.br │ │ │ ├── it │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── ja │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── ko │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── pl │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── pt-BR │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── ru │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── tr │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ ├── zh-Hans │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ │ └── zh-Hant │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll.br │ │ │ │ ├── Microsoft.CodeAnalysis.resources.dll │ │ │ │ └── Microsoft.CodeAnalysis.resources.dll.br │ │ └── logo.png │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── compontents │ │ │ ├── loading │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── monaco │ │ │ │ └── index.tsx │ │ │ └── navigation │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── layouts │ │ │ └── mian-layout │ │ │ │ └── index.tsx │ │ ├── main.tsx │ │ ├── pages │ │ │ └── home │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ ├── services │ │ │ └── fileService.ts │ │ ├── types │ │ │ └── index.d.ts │ │ ├── utils │ │ │ └── db.ts │ │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── yarn.lock ├── Examples.WebApp │ ├── Examples.WebApp.Rcl │ │ ├── Components │ │ │ ├── FileTree.razor │ │ │ └── TitleFile.razor │ │ ├── Examples.WebApp.Rcl.csproj │ │ ├── GlobalUsings.cs │ │ ├── Pages │ │ │ └── Home.razor │ │ ├── Program.cs │ │ ├── Routes.razor │ │ ├── Shared │ │ │ ├── EmptyLayout.razor │ │ │ └── MainLayout.razor │ │ ├── _Imports.razor │ │ └── wwwroot │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ ├── Examples.WebApp.sln │ └── Examples.WebApp │ │ ├── Components │ │ ├── App.razor │ │ └── _Imports.razor │ │ ├── Examples.WebApp.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── app.css │ │ ├── axios.min.js │ │ ├── csharp.png │ │ ├── favicon.png │ │ └── github.png └── Examples.WebAssembly │ ├── Examples.WebAssembly.csproj │ ├── Examples.WebAssembly.csproj.user │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ └── launchSettings.json │ └── wwwroot │ ├── axios.min.js │ ├── csharp.png │ ├── css │ └── app.css │ ├── decode.min.js │ ├── github.png │ ├── icon-512.png │ ├── index.html │ └── manifest.json └── src ├── WebActuator.WebAssembly ├── ExportManage.cs ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ └── launchSettings.json ├── WebActuator.WebAssembly.csproj ├── WebActuator.WebAssembly.csproj.user ├── WebActuatorApp.cs ├── _Imports.razor └── wwwroot │ ├── axios.min.js │ ├── decode.min.js │ ├── exportManage.js │ └── index.html └── WebActuator ├── ActuatorCompile.cs ├── AsyncContext.cs ├── ConsoleOutput.cs ├── EntryPointDiscoverer.cs ├── GlobalManage.cs ├── Models └── DiagnosticDto.cs ├── MultiplexingTextWriter.cs ├── ObservableStringWriter.cs ├── Options └── CompileOptions.cs ├── ReferenceManage.cs ├── WebActuator.csproj └── token.png /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | /packages/ 4 | riderModule.iml 5 | /_ReSharper.Caches/ 6 | /.vs 7 | /.idea 8 | /.vscode 9 | /examples/Examples.Service/wwwroot/logo.png 10 | /examples/Examples.Service/wwwroot/_framework 11 | /examples/Examples.Service/wwwroot/assets 12 | /examples/Examples.Service/wwwroot/index.html 13 | -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | Token 4 | 0.0.1 5 | 6 | -------------------------------------------------------------------------------- /examples/ActuatorApp/.vs/ActuatorApp/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/.vs/ActuatorApp/v17/.suo -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/.vs/ActuatorApp.App/FileContentIndex/2a7cf10e-3704-43f3-9ab2-54e4e17f6ee8.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/.vs/ActuatorApp.App/FileContentIndex/2a7cf10e-3704-43f3-9ab2-54e4e17f6ee8.vsidx -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/.vs/ActuatorApp.App/FileContentIndex/c3ab8664-4fb8-49d7-b307-ebda253c95f1.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/.vs/ActuatorApp.App/FileContentIndex/c3ab8664-4fb8-49d7-b307-ebda253c95f1.vsidx -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/.vs/ActuatorApp.App/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/.vs/ActuatorApp.App/FileContentIndex/read.lock -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ActuatorApp; 2 | 3 | public partial class App : Application 4 | { 5 | public App() 6 | { 7 | InitializeComponent(); 8 | 9 | MainPage = new MainPage(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace ActuatorApp; 2 | 3 | public partial class MainPage : ContentPage 4 | { 5 | public MainPage() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Pages/Home.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |

Home

4 | 5 | @code { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #512BD4 4 | #2B0B98 5 | #2B0B98 6 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | 3 | namespace ActuatorApp; 4 | 5 | [Register("AppDelegate")] 6 | public class AppDelegate : MauiUIApplicationDelegate 7 | { 8 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 9 | } 10 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using Foundation; 2 | 3 | namespace ActuatorApp; 4 | 5 | [Register("AppDelegate")] 6 | public class AppDelegate : MauiUIApplicationDelegate 7 | { 8 | protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); 9 | } 10 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": false 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /examples/ActuatorApp/ActuatorApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/ActuatorApp/ActuatorApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /examples/Examples.Server/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Components.Routing 2 | @using Microsoft.AspNetCore.Components.Web 3 | @using Microsoft.JSInterop 4 | @using Examples.Server 5 | -------------------------------------------------------------------------------- /examples/Examples.Server/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "DetailedErrors": true, 3 | "Logging": { 4 | "LogLevel": { 5 | "Default": "Information", 6 | "Microsoft.AspNetCore": "Warning" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /examples/Examples.Server/appsettings.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "Logging": { 4 | "LogLevel": { 5 | "Default": "Information", 6 | "Microsoft.AspNetCore": "Warning" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /examples/Examples.Server/wwwroot/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Server/wwwroot/csharp.png -------------------------------------------------------------------------------- /examples/Examples.Server/wwwroot/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Server/wwwroot/github.png -------------------------------------------------------------------------------- /examples/Examples.Server/wwwroot/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Server/wwwroot/icon-512.png -------------------------------------------------------------------------------- /examples/Examples.Service/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "7.0.7", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /examples/Examples.Service/Models/CreateCodeModel.cs: -------------------------------------------------------------------------------- 1 | namespace Examples.Service.Models; 2 | 3 | public struct CreateCodeModel 4 | { 5 | public string Code { get; set; } 6 | } -------------------------------------------------------------------------------- /examples/Examples.Service/MonacoRoslynCompletionProvider/Api/CodeCheckSeverity.cs: -------------------------------------------------------------------------------- 1 | namespace Examples.Service.MonacoRoslynCompletionProvider.Api 2 | { 3 | public enum CodeCheckSeverity 4 | { 5 | Unkown = 0, 6 | Hint = 1, 7 | Info = 2, 8 | Warning = 4, 9 | Error = 8 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /examples/Examples.Service/MonacoRoslynCompletionProvider/Api/IRequest.cs: -------------------------------------------------------------------------------- 1 | namespace Examples.Service.MonacoRoslynCompletionProvider.Api 2 | { 3 | public interface IRequest 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/Examples.Service/MonacoRoslynCompletionProvider/Api/IResponse.cs: -------------------------------------------------------------------------------- 1 | namespace Examples.Service.MonacoRoslynCompletionProvider.Api 2 | { 3 | public interface IResponse 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/Examples.Service/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/System.Text.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /examples/Examples.Service/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /examples/Examples.Service/docker-build.bat: -------------------------------------------------------------------------------- 1 | cd ../../ 2 | docker build -t registry.cn-shenzhen.aliyuncs.com/gotrays/web-actuator-service -f examples\Examples.Service\Dockerfile . 3 | docker push registry.cn-shenzhen.aliyuncs.com/gotrays/web-actuator-service -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/.version: -------------------------------------------------------------------------------- 1 | 4b0550942d7e38bf28dcfddb955e616290b83787 2 | 7.0.8 3 | -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Antiforgery.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Antiforgery.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.Cookies.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.Cookies.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.OAuth.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authentication.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authorization.Policy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authorization.Policy.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Authorization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Authorization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Authorization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Forms.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Server.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Connections.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Connections.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.CookiePolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.CookiePolicy.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Cors.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.DataProtection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.DataProtection.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.DataProtection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.DataProtection.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.DataProtection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.DataProtection.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Diagnostics.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Diagnostics.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Diagnostics.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HostFiltering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HostFiltering.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Hosting.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Html.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Html.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Connections.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Connections.Common.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Connections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Connections.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Features.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Results.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.Results.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Http.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HttpLogging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HttpLogging.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HttpOverrides.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HttpOverrides.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HttpsPolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.HttpsPolicy.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Identity.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Localization.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Localization.Routing.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Localization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Metadata.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.ApiExplorer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.ApiExplorer.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Cors.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.DataAnnotations.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Formatters.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Formatters.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Formatters.Json.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNetCore.Mvc.Formatters.Json 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Localization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.Razor.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.RazorPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.RazorPages.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.TagHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.TagHelpers.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.ViewFeatures.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.ViewFeatures.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Mvc.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.OutputCaching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.OutputCaching.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.RateLimiting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.RateLimiting.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Razor.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Razor.Runtime.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Razor.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.RequestDecompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.RequestDecompression.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.ResponseCaching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.ResponseCaching.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.ResponseCompression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.ResponseCompression.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Rewrite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Rewrite.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Routing.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Routing.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Routing.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.HttpSys.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.HttpSys.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.IIS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.IIS.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.IISIntegration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.IISIntegration.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Server.Kestrel.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Session.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.Session.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.Common.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.Protocols.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.Protocols.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.SignalR.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.StaticFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.StaticFiles.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.WebSockets.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.WebUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.WebUtilities.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.AspNetCore.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.CommandLine.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.EnvironmentVariables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.EnvironmentVariables.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Ini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Ini.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.KeyPerFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.KeyPerFile.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.UserSecrets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.UserSecrets.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Diagnostics.HealthChecks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Diagnostics.HealthChecks.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Features.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Composite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Composite.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Embedded.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Embedded.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Hosting.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Hosting.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Hosting.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Http.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Localization.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Localization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Localization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Configuration.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Console.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.Debug.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.EventLog.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.EventSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.EventSource.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.TraceSource.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.ObjectPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.ObjectPool.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Options.ConfigurationExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Options.ConfigurationExtensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Options.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Options.DataAnnotations.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.WebEncoders.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Extensions.WebEncoders.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.NETCore.App.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net7.0", 4 | "configProperties": { 5 | "System.Reflection.Metadata.MetadataUpdater.IsSupported": false 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Net.Http.Headers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Net.Http.Headers.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.VisualBasic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.VisualBasic.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.VisualBasic.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.AppContext.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Buffers.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Collections.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ComponentModel.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Configuration.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Console.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Core.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Data.Common.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Data.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Drawing.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Formats.Tar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Formats.Tar.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Globalization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Compression.Brotli.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Compression.Brotli.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Compression.Native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Compression.Native.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Compression.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Pipes.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Pipes.AccessControl.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.Pipes.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.IO.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Linq.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Memory.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Http.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Http.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Http.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Mail.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Ping.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Quic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Quic.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Requests.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Security.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.Sockets.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.WebClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.WebClient.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.WebProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.WebProxy.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Net.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Numerics.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ObjectModel.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Private.CoreLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Private.CoreLib.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Private.DataContractSerialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Private.DataContractSerialization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Private.Uri.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Private.Uri.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Private.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Private.Xml.Linq.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Private.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Private.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Reflection.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Resources.Reader.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Resources.Writer.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.InteropServices.JavaScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.InteropServices.JavaScript.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Intrinsics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Intrinsics.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Runtime.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Claims.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.OpenSsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.OpenSsl.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Cryptography.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.Principal.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.SecureString.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Security.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ServiceModel.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ServiceModel.Web.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ServiceProcess.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Text.Encoding.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Text.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Channels.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Channels.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.RateLimiting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.RateLimiting.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Thread.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.Timer.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Threading.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Transactions.Local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Transactions.Local.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Transactions.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.ValueTuple.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Web.HttpUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Web.HttpUtility.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Web.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Windows.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.Linq.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.Serialization.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.XPath.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/System.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/WindowsBase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/WindowsBase.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/clretwrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/clretwrc.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/clrgc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/clrgc.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/clrjit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/clrjit.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/coreclr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/coreclr.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/createdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/createdump.exe -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/hostpolicy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/hostpolicy.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/mscordaccore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/mscordaccore.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/mscordaccore_x86_x86_7.0.823.31807.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/mscordaccore_x86_x86_7.0.823.31807.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/mscordbi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/mscordbi.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/mscorlib.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/mscorrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/mscorrc.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/msquic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/msquic.dll -------------------------------------------------------------------------------- /examples/Examples.Service/wwwroot/assembly/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Service/wwwroot/assembly/netstandard.dll -------------------------------------------------------------------------------- /examples/Examples.Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/Examples.Shared/Models/CreateCodeModel.cs: -------------------------------------------------------------------------------- 1 | namespace Examples.Service.Models; 2 | 3 | public struct CreateCodeModel 4 | { 5 | public string Code { get; set; } 6 | } -------------------------------------------------------------------------------- /examples/Examples.Shared/Models/StorageFile.cs: -------------------------------------------------------------------------------- 1 | namespace Examples.Shared.Models; 2 | 3 | public class StorageFile 4 | { 5 | public string Name { get; set; } 6 | 7 | public string Cotent { get; set; } 8 | 9 | public DateTime CreatedTime { get; set; } 10 | } 11 | -------------------------------------------------------------------------------- /examples/Examples.Shared/_Imports.cs: -------------------------------------------------------------------------------- 1 | global using Examples.Shared.Models; 2 | global using Masa.Blazor; 3 | global using BlazorComponent; -------------------------------------------------------------------------------- /examples/Examples.Shared/wwwroot/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Shared/wwwroot/background.png -------------------------------------------------------------------------------- /examples/Examples.Web/__global.d.ts: -------------------------------------------------------------------------------- 1 | declare global { 2 | interface Window { 3 | foo: string; 4 | exportManage:any; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.Web.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.Web.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.Web.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.AspNetCore.Components.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.CSharp.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.CSharp.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.CodeAnalysis.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Json.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.Json.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Configuration.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.DependencyInjection.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.Abstractions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Logging.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Options.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Options.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.Extensions.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.Extensions.Primitives.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.JSInterop.WebAssembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.JSInterop.WebAssembly.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.JSInterop.WebAssembly.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.JSInterop.WebAssembly.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.JSInterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.JSInterop.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/Microsoft.JSInterop.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/Microsoft.JSInterop.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.Concurrent.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.Concurrent.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.Immutable.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.Immutable.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.NonGeneric.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.NonGeneric.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Collections.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Collections.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.ComponentModel.TypeConverter.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.ComponentModel.TypeConverter.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.ComponentModel.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.ComponentModel.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.ComponentModel.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Console.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Console.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Console.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.Debug.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.Debug.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.StackTrace.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.StackTrace.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.TraceSource.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.TraceSource.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Diagnostics.Tracing.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Diagnostics.Tracing.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Globalization.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Globalization.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Globalization.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.IO.Compression.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.IO.Compression.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.IO.Compression.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.IO.FileSystem.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.IO.FileSystem.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.IO.MemoryMappedFiles.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.IO.MemoryMappedFiles.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Linq.Expressions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Linq.Expressions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Linq.Queryable.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Linq.Queryable.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Linq.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Linq.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Linq.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Memory.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Memory.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Memory.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Net.Http.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Net.Http.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Net.Http.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Net.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Net.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Net.Primitives.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.ObjectModel.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.ObjectModel.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.ObjectModel.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.CoreLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.CoreLib.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.CoreLib.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.CoreLib.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.Uri.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.Uri.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.Uri.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.Uri.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.Xml.Linq.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.Xml.Linq.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.Xml.Linq.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.Xml.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Private.Xml.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Private.Xml.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Reactive.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Reactive.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Reactive.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Reflection.Metadata.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Reflection.Metadata.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Reflection.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Reflection.Primitives.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Resources.ResourceManager.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Resources.ResourceManager.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.CompilerServices.Unsafe.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.CompilerServices.Unsafe.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Extensions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Extensions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.InteropServices.JavaScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.InteropServices.JavaScript.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.InteropServices.JavaScript.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.InteropServices.JavaScript.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.InteropServices.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.InteropServices.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Loader.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Loader.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Numerics.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Numerics.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.Serialization.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.Serialization.Primitives.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Runtime.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Runtime.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Security.Cryptography.Algorithms.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Security.Cryptography.Algorithms.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Security.Cryptography.Primitives.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Security.Cryptography.Primitives.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Security.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Security.Cryptography.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Security.Cryptography.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Security.Cryptography.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Encoding.CodePages.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Encoding.CodePages.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Encoding.Extensions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Encoding.Extensions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Encodings.Web.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Encodings.Web.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Json.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.Json.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.Json.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Text.RegularExpressions.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Text.RegularExpressions.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.Tasks.Parallel.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.Tasks.Parallel.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.Tasks.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.Tasks.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.Thread.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.Thread.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.Thread.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.ThreadPool.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.ThreadPool.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Threading.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Threading.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.Linq.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.Linq.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.Linq.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.ReaderWriter.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.ReaderWriter.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.XDocument.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.XDocument.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/System.Xml.XPath.XDocument.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/System.Xml.XPath.XDocument.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/WebActuator.WebAssembly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/WebActuator.WebAssembly.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/WebActuator.WebAssembly.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/WebActuator.WebAssembly.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/WebActuator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/WebActuator.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/WebActuator.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/WebActuator.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/blazor.boot.json.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/blazor.boot.json.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/blazor.webassembly.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/blazor.webassembly.js.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/cs/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/de/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/dotnet.7.0.9.0nfnq9g8ju.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/dotnet.7.0.9.0nfnq9g8ju.js.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/dotnet.timezones.blat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/dotnet.timezones.blat -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/dotnet.timezones.blat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/dotnet.timezones.blat.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/dotnet.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/dotnet.wasm -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/dotnet.wasm.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/dotnet.wasm.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/es/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/fr/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt.dat -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt.dat.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt_CJK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt_CJK.dat -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt_CJK.dat.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt_EFIGS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt_EFIGS.dat -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt_EFIGS.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt_EFIGS.dat.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt_no_CJK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt_no_CJK.dat -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/icudt_no_CJK.dat.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/icudt_no_CJK.dat.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/it/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ja/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ko/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pl/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/ru/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/tr/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.br -------------------------------------------------------------------------------- /examples/Examples.Web/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/public/logo.png -------------------------------------------------------------------------------- /examples/Examples.Web/src/App.css: -------------------------------------------------------------------------------- 1 | html,body,#root{ 2 | height: 100%; 3 | padding: 0px; 4 | margin: 0px; 5 | } 6 | html{ 7 | overflow: hidden; 8 | } 9 | 10 | body{ 11 | padding: 0px; 12 | margin: 0px; 13 | } -------------------------------------------------------------------------------- /examples/Examples.Web/src/compontents/navigation/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/src/compontents/navigation/index.css -------------------------------------------------------------------------------- /examples/Examples.Web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.Web/src/index.css -------------------------------------------------------------------------------- /examples/Examples.Web/src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ReactDOM from 'react-dom/client' 3 | import App from './App.tsx' 4 | import './index.css' 5 | 6 | ReactDOM.createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ) 11 | -------------------------------------------------------------------------------- /examples/Examples.Web/src/types/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'pubsub-js'; 2 | 3 | declare global { 4 | interface Window { 5 | foo: string; 6 | exportManage:any; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /examples/Examples.Web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/Examples.Web/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /examples/Examples.Web/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp.Rcl/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | // Global using directives 2 | 3 | global using Microsoft.AspNetCore.Components.WebAssembly.Hosting; -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp.Rcl/Program.cs: -------------------------------------------------------------------------------- 1 | var builder = WebAssemblyHostBuilder.CreateDefault(args); 2 | 3 | builder.Services.AddMasaBlazor(options => 4 | { 5 | options.ConfigureTheme(theme => 6 | { 7 | theme.Dark = true; 8 | }); 9 | }); 10 | 11 | await builder.Build().RunAsync(); -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp.Rcl/Routes.razor: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp.Rcl/Shared/EmptyLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp.Rcl/wwwroot/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp.Rcl/wwwroot/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp/wwwroot/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.WebApp/Examples.WebApp/wwwroot/csharp.png -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.WebApp/Examples.WebApp/wwwroot/favicon.png -------------------------------------------------------------------------------- /examples/Examples.WebApp/Examples.WebApp/wwwroot/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.WebApp/Examples.WebApp/wwwroot/github.png -------------------------------------------------------------------------------- /examples/Examples.WebAssembly/wwwroot/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.WebAssembly/wwwroot/csharp.png -------------------------------------------------------------------------------- /examples/Examples.WebAssembly/wwwroot/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.WebAssembly/wwwroot/github.png -------------------------------------------------------------------------------- /examples/Examples.WebAssembly/wwwroot/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/examples/Examples.WebAssembly/wwwroot/icon-512.png -------------------------------------------------------------------------------- /src/WebActuator.WebAssembly/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Components.WebAssembly.Hosting; 2 | using WebActuator.WebAssembly; 3 | 4 | var builder = WebAssemblyHostBuilder.CreateDefault(args); 5 | 6 | 7 | var app = builder.Build(); 8 | 9 | WebActuatorApp.Init(app.Services); 10 | 11 | await app.RunAsync(); -------------------------------------------------------------------------------- /src/WebActuator.WebAssembly/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using System.Net.Http 2 | @using System.Net.Http.Json 3 | @using Microsoft.AspNetCore.Components.Routing 4 | @using Microsoft.AspNetCore.Components.Web 5 | @using Microsoft.AspNetCore.Components.WebAssembly.Http 6 | @using Microsoft.JSInterop 7 | @using WebActuator.WebAssembly 8 | -------------------------------------------------------------------------------- /src/WebActuator/Models/DiagnosticDto.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.CodeAnalysis; 2 | 3 | namespace WebActuator.Models; 4 | 5 | public class DiagnosticDto 6 | { 7 | public DiagnosticSeverity Severity { get; set; } 8 | 9 | public string? Code { get; set; } 10 | 11 | public string? Message { get; set; } 12 | } 13 | -------------------------------------------------------------------------------- /src/WebActuator/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/239573049/WebActuator/2f47299cf6c3d9d61dd0d86ae91ef30884dbd1dc/src/WebActuator/token.png --------------------------------------------------------------------------------