├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── do_not_log_issues.md ├── .gitignore ├── Blazor.sln ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── README.md ├── SECURITY.md ├── THIRD-PARTY-NOTICES.txt ├── UpgradeMono.cmd ├── UpgradeMono.ps1 ├── azure-pipelines.yml ├── eng ├── Signing.props ├── Version.Details.xml ├── Versions.props └── common │ ├── CIBuild.cmd │ ├── CheckSymbols.ps1 │ ├── PSScriptAnalyzerSettings.psd1 │ ├── PublishToPackageFeed.proj │ ├── PublishToSymbolServers.proj │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── SigningValidation.proj │ ├── SourceLinkValidation.ps1 │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── cross │ ├── android │ │ ├── arm │ │ │ └── toolchain.cmake │ │ └── arm64 │ │ │ └── toolchain.cmake │ ├── arm │ │ ├── sources.list.bionic │ │ ├── sources.list.jessie │ │ ├── sources.list.trusty │ │ ├── sources.list.xenial │ │ ├── sources.list.zesty │ │ ├── trusty-lttng-2.4.patch │ │ └── trusty.patch │ ├── arm64 │ │ ├── sources.list.bionic │ │ ├── sources.list.buster │ │ ├── sources.list.stretch │ │ ├── sources.list.trusty │ │ ├── sources.list.xenial │ │ └── sources.list.zesty │ ├── armel │ │ ├── sources.list.jessie │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ └── tizen │ │ │ ├── tizen-dotnet.ks │ │ │ └── tizen.patch │ ├── build-android-rootfs.sh │ ├── build-rootfs.sh │ ├── toolchain.cmake │ └── x86 │ │ ├── sources.list.bionic │ │ ├── sources.list.trusty │ │ └── sources.list.xenial │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-graph-files.ps1 │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ ├── Directory.Build.props │ └── Tools.csproj │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ ├── CommonLibrary.psm1 │ ├── common-library.sh │ ├── install-cmake-test.sh │ ├── install-cmake.sh │ └── install-tool.ps1 │ ├── performance │ ├── perfhelixpublish.proj │ ├── performance-setup.ps1 │ └── performance-setup.sh │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ ├── darc-gather-drop.ps1 │ ├── nuget-validation.ps1 │ ├── post-build-utils.ps1 │ ├── promote-build.ps1 │ ├── setup-maestro-vars.ps1 │ ├── sourcelink-validation.ps1 │ ├── symbols-validation.ps1 │ └── trigger-subscriptions.ps1 │ ├── sdk-task.ps1 │ ├── sdl │ ├── NuGet.config │ ├── execute-all-sdl-tools.ps1 │ ├── extract-artifact-packages.ps1 │ ├── init-sdl.ps1 │ ├── packages.config │ ├── push-gdn.ps1 │ └── run-sdl.ps1 │ ├── templates │ ├── job │ │ ├── execute-sdl.yml │ │ ├── generate-graph-files.yml │ │ ├── job.yml │ │ ├── performance.yml │ │ └── publish-build-assets.yml │ ├── jobs │ │ └── jobs.yml │ ├── phases │ │ ├── base.yml │ │ └── publish-build-assets.yml │ ├── post-build │ │ ├── channels │ │ │ ├── generic-internal-channel.yml │ │ │ └── generic-public-channel.yml │ │ ├── common-variables.yml │ │ ├── darc-gather-drop.yml │ │ ├── post-build.yml │ │ ├── promote-build.yml │ │ ├── setup-maestro-vars.yml │ │ └── trigger-subscription.yml │ └── steps │ │ ├── build-reason.yml │ │ ├── perf-send-to-helix.yml │ │ ├── promote-build.yml │ │ ├── run-on-unix.yml │ │ ├── run-on-windows.yml │ │ ├── run-script-ifequalelse.yml │ │ ├── send-to-helix.yml │ │ ├── telemetry-end.yml │ │ └── telemetry-start.yml │ ├── tools.ps1 │ └── tools.sh ├── global.json ├── runtimeconfig.template.json └── src ├── Directory.Build.props ├── Microsoft.AspNetCore.Blazor.BuildTools ├── Cli │ ├── Commands │ │ ├── CheckNodeJsInstalledCommand.cs │ │ └── ILWipeCommand.cs │ └── Program.cs ├── Core │ └── ILWipe │ │ ├── AssemblyItem.cs │ │ ├── MethodWipedExceptionMethod.cs │ │ ├── SpecList.cs │ │ ├── SpecListEntry.cs │ │ └── WipeAssembly.cs └── Microsoft.AspNetCore.Blazor.BuildTools.csproj ├── Microsoft.AspNetCore.Components.WebAssembly.DebugProxy ├── DebugProxyOptions.cs ├── Hosting │ └── DebugProxyHost.cs ├── Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj ├── Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.nuspec ├── MonoDebugProxy │ └── ws-proxy │ │ ├── DebugStore.cs │ │ ├── DevToolsHelper.cs │ │ ├── DevToolsProxy.cs │ │ ├── EvaluateExpression.cs │ │ └── MonoProxy.cs ├── Program.cs ├── Startup.cs └── TargetPickerUi.cs ├── Microsoft.AspNetCore.Components.WebAssembly.Runtime ├── .gitignore ├── Directory.Build.props ├── HowToUpgradeMono.md ├── Microsoft.AspNetCore.Components.WebAssembly.Runtime.csproj ├── Microsoft.AspNetCore.Components.WebAssembly.Runtime.nuspec ├── bclwipe │ └── mscorlib.txt ├── build │ └── netstandard1.0 │ │ └── Microsoft.AspNetCore.Components.WebAssembly.Runtime.props ├── incoming │ ├── bcl │ │ ├── Facades │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ ├── Microsoft.Win32.Registry.AccessControl.dll │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ ├── System.AppContext.dll │ │ │ ├── System.Buffers.dll │ │ │ ├── System.Collections.Concurrent.dll │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ ├── System.Collections.Specialized.dll │ │ │ ├── System.Collections.dll │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ │ ├── System.ComponentModel.Primitives.dll │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ ├── System.ComponentModel.dll │ │ │ ├── System.Console.dll │ │ │ ├── System.Data.Common.dll │ │ │ ├── System.Data.SqlClient.dll │ │ │ ├── System.Diagnostics.Contracts.dll │ │ │ ├── System.Diagnostics.Debug.dll │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ ├── System.Diagnostics.Process.dll │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ │ ├── System.Diagnostics.Tools.dll │ │ │ ├── System.Diagnostics.TraceEvent.dll │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.Drawing.Primitives.dll │ │ │ ├── System.Dynamic.Runtime.dll │ │ │ ├── System.Globalization.Calendars.dll │ │ │ ├── System.Globalization.Extensions.dll │ │ │ ├── System.Globalization.dll │ │ │ ├── System.IO.Compression.ZipFile.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.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.AuthenticationManager.dll │ │ │ ├── System.Net.Cache.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.Requests.dll │ │ │ ├── System.Net.Security.dll │ │ │ ├── System.Net.ServicePoint.dll │ │ │ ├── System.Net.Sockets.dll │ │ │ ├── System.Net.Utilities.dll │ │ │ ├── System.Net.WebHeaderCollection.dll │ │ │ ├── System.Net.WebSockets.Client.dll │ │ │ ├── System.Net.WebSockets.dll │ │ │ ├── System.ObjectModel.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.Primitives.dll │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ ├── System.Reflection.dll │ │ │ ├── System.Resources.Reader.dll │ │ │ ├── System.Resources.ReaderWriter.dll │ │ │ ├── System.Resources.ResourceManager.dll │ │ │ ├── System.Resources.Writer.dll │ │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ │ ├── System.Runtime.Extensions.dll │ │ │ ├── System.Runtime.Handles.dll │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ ├── System.Runtime.InteropServices.WindowsRuntime.dll │ │ │ ├── System.Runtime.InteropServices.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.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.DeriveBytes.dll │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ ├── System.Security.Cryptography.Encryption.Aes.dll │ │ │ ├── System.Security.Cryptography.Encryption.ECDiffieHellman.dll │ │ │ ├── System.Security.Cryptography.Encryption.ECDsa.dll │ │ │ ├── System.Security.Cryptography.Encryption.dll │ │ │ ├── System.Security.Cryptography.Hashing.Algorithms.dll │ │ │ ├── System.Security.Cryptography.Hashing.dll │ │ │ ├── System.Security.Cryptography.OpenSsl.dll │ │ │ ├── System.Security.Cryptography.Pkcs.dll │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Cryptography.RSA.dll │ │ │ ├── System.Security.Cryptography.RandomNumberGenerator.dll │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ ├── System.Security.Principal.dll │ │ │ ├── System.Security.SecureString.dll │ │ │ ├── System.ServiceProcess.ServiceController.dll │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ ├── System.Text.Encoding.Extensions.dll │ │ │ ├── System.Text.Encoding.dll │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ ├── System.Threading.AccessControl.dll │ │ │ ├── System.Threading.Overlapped.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.ValueTuple.dll │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ ├── System.Xml.XDocument.dll │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ │ ├── System.Xml.XPath.dll │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ ├── System.Xml.XmlSerializer.dll │ │ │ ├── System.Xml.Xsl.Primitives.dll │ │ │ └── netstandard.dll │ │ ├── I18N.CJK.dll │ │ ├── I18N.MidEast.dll │ │ ├── I18N.Other.dll │ │ ├── I18N.Rare.dll │ │ ├── I18N.West.dll │ │ ├── I18N.dll │ │ ├── Microsoft.CSharp.dll │ │ ├── Mono.Security.dll │ │ ├── System.ComponentModel.Composition.dll │ │ ├── System.ComponentModel.DataAnnotations.dll │ │ ├── System.Core.dll │ │ ├── System.Data.DataSetExtensions.dll │ │ ├── System.Data.dll │ │ ├── System.IO.Compression.FileSystem.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Numerics.Vectors.dll │ │ ├── System.Numerics.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Runtime.Serialization.dll │ │ ├── System.Security.dll │ │ ├── System.ServiceModel.Internals.dll │ │ ├── System.Transactions.dll │ │ ├── System.Xml.Linq.dll │ │ ├── System.Xml.dll │ │ ├── System.dll │ │ └── mscorlib.dll │ ├── framework │ │ ├── System.Net.Http.WebAssemblyHttpHandler.dll │ │ ├── WebAssembly.Bindings.dll │ │ └── WebAssembly.Net.WebSockets.dll │ └── wasm │ │ ├── dotnet.js │ │ └── dotnet.wasm └── tools │ └── binaries │ └── monolinker │ ├── Mono.Cecil.dll │ ├── monolinker.exe │ └── monolinker.runtimeconfig.json └── TimeZoneData ├── Program.cs ├── README.md ├── TimeZoneData.csproj ├── _._ ├── dotnet.timezones.dat └── run.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/do_not_log_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/.github/ISSUE_TEMPLATE/do_not_log_issues.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/.gitignore -------------------------------------------------------------------------------- /Blazor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/Blazor.sln -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see https://github.com/dotnet/aspnetcore/blob/master/CONTRIBUTING.md 2 | -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/THIRD-PARTY-NOTICES.txt -------------------------------------------------------------------------------- /UpgradeMono.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/UpgradeMono.cmd -------------------------------------------------------------------------------- /UpgradeMono.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/UpgradeMono.ps1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/CheckSymbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/CheckSymbols.ps1 -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/PublishToPackageFeed.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/PublishToPackageFeed.proj -------------------------------------------------------------------------------- /eng/common/PublishToSymbolServers.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/PublishToSymbolServers.proj -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/SigningValidation.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/SigningValidation.proj -------------------------------------------------------------------------------- /eng/common/SourceLinkValidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/SourceLinkValidation.ps1 -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/cross/android/arm/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/android/arm/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/android/arm64/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/android/arm64/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/sources.list.trusty -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/arm/trusty-lttng-2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/trusty-lttng-2.4.patch -------------------------------------------------------------------------------- /eng/common/cross/arm/trusty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm/trusty.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm64/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm64/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm64/sources.list.stretch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm64/sources.list.trusty -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm64/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/arm64/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/armel/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/armel/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/armel/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/armel/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen-dotnet.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/armel/tizen/tizen-dotnet.ks -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/x86/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/x86/sources.list.trusty -------------------------------------------------------------------------------- /eng/common/cross/x86/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/cross/x86/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-graph-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/generate-graph-files.ps1 -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/performance/perfhelixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/performance/perfhelixpublish.proj -------------------------------------------------------------------------------- /eng/common/performance/performance-setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/performance/performance-setup.ps1 -------------------------------------------------------------------------------- /eng/common/performance/performance-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/performance/performance-setup.sh -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/darc-gather-drop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/darc-gather-drop.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/post-build-utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/post-build-utils.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/promote-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/promote-build.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/setup-maestro-vars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/setup-maestro-vars.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/trigger-subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/post-build/trigger-subscriptions.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/push-gdn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/push-gdn.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/templates/job/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/job/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/job/generate-graph-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/job/generate-graph-files.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/performance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/job/performance.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/phases/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/phases/base.yml -------------------------------------------------------------------------------- /eng/common/templates/phases/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/phases/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/channels/generic-internal-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/channels/generic-internal-channel.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/channels/generic-public-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/channels/generic-public-channel.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/darc-gather-drop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/darc-gather-drop.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/promote-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/promote-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/trigger-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/post-build/trigger-subscription.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/build-reason.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/build-reason.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/perf-send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/perf-send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/promote-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/promote-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/run-on-unix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/run-on-windows.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-script-ifequalelse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/run-script-ifequalelse.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/telemetry-end.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/templates/steps/telemetry-start.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/global.json -------------------------------------------------------------------------------- /runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "rollForwardOnNoCandidateFx": 2 4 | } -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Cli/Commands/CheckNodeJsInstalledCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Cli/Commands/CheckNodeJsInstalledCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Cli/Commands/ILWipeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Cli/Commands/ILWipeCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Cli/Program.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/AssemblyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/AssemblyItem.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/MethodWipedExceptionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/MethodWipedExceptionMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/SpecList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/SpecList.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/SpecListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/SpecListEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/WipeAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Core/ILWipe/WipeAssembly.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Blazor.BuildTools/Microsoft.AspNetCore.Blazor.BuildTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Blazor.BuildTools/Microsoft.AspNetCore.Blazor.BuildTools.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/DebugProxyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/DebugProxyOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Hosting/DebugProxyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Hosting/DebugProxyHost.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy.nuspec -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/DebugStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/DebugStore.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/DevToolsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/DevToolsHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/DevToolsProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/DevToolsProxy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/EvaluateExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/EvaluateExpression.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/MonoProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/MonoDebugProxy/ws-proxy/MonoProxy.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Program.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/Startup.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/TargetPickerUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.DebugProxy/TargetPickerUi.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/HowToUpgradeMono.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/HowToUpgradeMono.md -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/Microsoft.AspNetCore.Components.WebAssembly.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/Microsoft.AspNetCore.Components.WebAssembly.Runtime.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/Microsoft.AspNetCore.Components.WebAssembly.Runtime.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/Microsoft.AspNetCore.Components.WebAssembly.Runtime.nuspec -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/bclwipe/mscorlib.txt: -------------------------------------------------------------------------------- 1 | # Nothing to do here yet 2 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/build/netstandard1.0/Microsoft.AspNetCore.Components.WebAssembly.Runtime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/build/netstandard1.0/Microsoft.AspNetCore.Components.WebAssembly.Runtime.props -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/Microsoft.Win32.Registry.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/Microsoft.Win32.Registry.AccessControl.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.AppContext.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Buffers.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Collections.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.Annotations.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ComponentModel.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Console.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Data.Common.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.TraceEvent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.TraceEvent.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Drawing.Common.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Globalization.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.AccessControl.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.Pipes.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.IO.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Linq.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Memory.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.AuthenticationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.AuthenticationManager.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Cache.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Cache.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.HttpListener.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Mail.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Mail.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Ping.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Requests.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Security.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.ServicePoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.ServicePoint.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Sockets.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.Utilities.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ObjectModel.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.DispatchProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.DispatchProxy.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Emit.ILGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Emit.ILGeneration.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Emit.Lightweight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Emit.Lightweight.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Emit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Emit.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Reflection.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.Reader.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.ReaderWriter.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Resources.Writer.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.InteropServices.WindowsRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.InteropServices.WindowsRuntime.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Loader.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Runtime.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Claims.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.DeriveBytes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.DeriveBytes.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.Aes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.Aes.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.ECDiffieHellman.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.ECDsa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.ECDsa.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Encryption.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Hashing.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Hashing.Algorithms.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Hashing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Hashing.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.OpenSsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.OpenSsl.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Pkcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Pkcs.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.RSA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.RSA.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.RandomNumberGenerator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.RandomNumberGenerator.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.Principal.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Security.SecureString.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ServiceProcess.ServiceController.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ServiceProcess.ServiceController.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.Encoding.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.AccessControl.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Thread.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.Timer.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Threading.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.ValueTuple.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XPath.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.Xsl.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/System.Xml.Xsl.Primitives.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Facades/netstandard.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.CJK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.CJK.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.MidEast.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.MidEast.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.Other.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.Other.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.Rare.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.Rare.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.West.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.West.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/I18N.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Mono.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/Mono.Security.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.ComponentModel.Composition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.ComponentModel.Composition.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.ComponentModel.DataAnnotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.ComponentModel.DataAnnotations.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Core.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Data.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.IO.Compression.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.IO.Compression.FileSystem.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.IO.Compression.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Net.Http.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Numerics.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Runtime.Serialization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Runtime.Serialization.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Security.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.ServiceModel.Internals.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.ServiceModel.Internals.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Transactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Transactions.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Xml.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Xml.Linq.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.Xml.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/System.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/bcl/mscorlib.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/framework/System.Net.Http.WebAssemblyHttpHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/framework/System.Net.Http.WebAssemblyHttpHandler.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/framework/WebAssembly.Bindings.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/framework/WebAssembly.Bindings.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/framework/WebAssembly.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/framework/WebAssembly.Net.WebSockets.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/wasm/dotnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/wasm/dotnet.js -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/wasm/dotnet.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/incoming/wasm/dotnet.wasm -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/tools/binaries/monolinker/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/tools/binaries/monolinker/Mono.Cecil.dll -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/tools/binaries/monolinker/monolinker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/tools/binaries/monolinker/monolinker.exe -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/tools/binaries/monolinker/monolinker.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/Microsoft.AspNetCore.Components.WebAssembly.Runtime/tools/binaries/monolinker/monolinker.runtimeconfig.json -------------------------------------------------------------------------------- /src/TimeZoneData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/TimeZoneData/Program.cs -------------------------------------------------------------------------------- /src/TimeZoneData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/TimeZoneData/README.md -------------------------------------------------------------------------------- /src/TimeZoneData/TimeZoneData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/TimeZoneData/TimeZoneData.csproj -------------------------------------------------------------------------------- /src/TimeZoneData/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TimeZoneData/dotnet.timezones.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/TimeZoneData/dotnet.timezones.dat -------------------------------------------------------------------------------- /src/TimeZoneData/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/blazor/HEAD/src/TimeZoneData/run.sh --------------------------------------------------------------------------------