├── .appveyor.yml
├── .gitattributes
├── .github
└── workflows
│ ├── ci.yml
│ └── conventional-commits.yml
├── .gitignore
├── .gitmodules
├── .gitpod.yml
├── .vsts-ci.yml
├── License.md
├── Readme.md
├── THIRD-PARTY-NOTICES.txt
├── build
├── AssemblyVersion.cs
├── ci
│ ├── .markdownlint.json
│ ├── cspell.json
│ ├── dotnet-install.yml
│ ├── gitversion.yml
│ ├── stage-build-linux-tests.yml
│ ├── stage-build-macos-tests.yml
│ ├── stage-build-packages.yml
│ ├── stage-build-windows-tests.yml
│ ├── stage-determine-changes.yml
│ └── stage-docs-validations.yml
├── gitpod
│ └── build-all.sh
├── icon.png
├── nuget
│ └── nuget.exe
├── scripts
│ ├── run-tests-csp.sh
│ ├── run-tests-server.sh
│ ├── run-tests-swa.sh
│ ├── run-tests-windows-server.ps1
│ ├── run-tests-windows.ps1
│ ├── run-tests.sh
│ └── server.py
├── signing
│ ├── SignClient.json
│ └── sign-package.ps1
└── tools
│ └── packages.config
├── doc
├── contributing.md
├── debugger-support.md
├── deploy-and-publish.md
├── features-4gb.md
├── features-additional-files.md
├── features-deep-linking.md
├── features-dependency-management.md
├── features-embedded.mode.md
├── features-environment-variables.md
├── features-httprequestmessage-extensions.md
├── features-idbfs.md
├── features-interop.md
├── features-linker-opts.md
├── features-memory-corruption-troubleshooting.md
├── features-module-linking.md
├── features-pre-compression.md
├── features-profiling.md
├── features-pwa.md
├── features-security.md
├── features-simd.md
├── features-splash-screen.md
├── features-threading.md
├── features-version-checker.md
├── linker-configuration.md
├── release-procedure.md
├── runtime-execution-modes.md
├── toc.yml
└── using-the-bootstrapper.md
├── src
├── .editorconfig
├── Directory.Build.props
├── Directory.Build.targets
├── LongPathTest
│ ├── Program.cs
│ ├── Uno.Wasm.LongPath.csproj
│ └── wwwroot
│ │ └── this_is_a_very_long_file_name_that_should_not_fail_if_it_is_located_in_a_folder_path_that_is_very_long_so_we_make_a_very_long_name_to_try_and_make_it_fail_this_is_a_very_long_file_name.xml
├── Uno.Wasm.AotProfiler
│ ├── AotProfilerSupport.cs
│ ├── LinkerConfig.xml
│ └── Uno.Wasm.AotProfiler.csproj
├── Uno.Wasm.Bootstrap-msbuild-only.slnf
├── Uno.Wasm.Bootstrap-netcore-only.slnf
├── Uno.Wasm.Bootstrap-packages-only.slnf
├── Uno.Wasm.Bootstrap.DevServer
│ └── Uno.Wasm.Bootstrap.DevServer.csproj.csproj
├── Uno.Wasm.Bootstrap.Server
│ ├── AspNetExtensions.cs
│ ├── Uno.Wasm.Bootstrap.Server.csproj
│ └── build
│ │ └── Uno.Wasm.Bootstrap.Server.targets
├── Uno.Wasm.Bootstrap.UnitTests
│ ├── Given_BitcodeFilesSelector.cs
│ └── Uno.Wasm.Bootstrap.UnitTests.csproj
├── Uno.Wasm.Bootstrap.sln
├── Uno.Wasm.Bootstrap
│ ├── AssemblyInfo.cs
│ ├── BitcodeFilesSelector.cs
│ ├── CompressionLayoutMode.cs
│ ├── DeployMode.cs
│ ├── Embedded
│ │ └── service-worker.js
│ ├── Extensions
│ │ ├── IsInternalInit.cs
│ │ ├── LongPathHelper.cs
│ │ ├── PathHelper.cs
│ │ └── TaskItemExtensions.cs
│ ├── Externals
│ │ └── Mono.Profiler.Aot
│ │ │ ├── ProfileBase.cs
│ │ │ ├── ProfileData.cs
│ │ │ ├── ProfileReader.cs
│ │ │ ├── ProfileWriter.cs
│ │ │ └── Records.cs
│ ├── GenerateUnoAssetsManifestTask.cs
│ ├── GenerateUnoNativeAssetsTask.AOTProfile.cs
│ ├── GenerateUnoNativeAssetsTask.cs
│ ├── MetadataKeys.cs
│ ├── RuntimeExecutionMode.cs
│ ├── ShellMode.cs
│ ├── ShellTask.cs
│ ├── Templates
│ │ └── index.html
│ ├── Uno.Wasm.Bootstrap.csproj
│ ├── WasmCSS
│ │ ├── normalize.css
│ │ └── uno-bootstrap.css
│ ├── WasmScripts
│ │ └── require.js
│ ├── build
│ │ ├── Uno.Wasm.Bootstrap.Publish.targets
│ │ ├── Uno.Wasm.Bootstrap.props
│ │ ├── Uno.Wasm.Bootstrap.targets
│ │ └── scripts
│ │ │ ├── dotnet-setup.sh
│ │ │ ├── emscripten-setup.cmd
│ │ │ └── emscripten-setup.sh
│ ├── ts
│ │ ├── Entrypoint.js
│ │ ├── Entrypoint.js.map
│ │ ├── Entrypoint.ts
│ │ ├── Uno
│ │ │ └── WebAssembly
│ │ │ │ ├── AotProfilerSupport.ts
│ │ │ │ ├── Bootstrapper.ts
│ │ │ │ ├── HotReloadSupport.ts
│ │ │ │ ├── LogProfilerSupport.ts
│ │ │ │ ├── UnoConfig.js
│ │ │ │ ├── UnoConfig.js.map
│ │ │ │ └── UnoConfig.ts
│ │ └── types
│ │ │ ├── dotnet
│ │ │ ├── index.d.ts
│ │ │ └── mono.d.ts
│ │ │ ├── emscripten
│ │ │ └── index.d.ts
│ │ │ └── requirejs
│ │ │ └── index.d.ts
│ └── tsconfig.json
├── Uno.Wasm.Embedded.App
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.Embedded.App.csproj
│ └── wwwroot
│ │ ├── favicon.ico
│ │ └── web.config
├── Uno.Wasm.Embedded.Host
│ ├── Program.cs
│ ├── Startup.cs
│ ├── Uno.Wasm.Embedded.Host.csproj
│ ├── appsettings.Development.json
│ ├── appsettings.json
│ └── wwwroot
│ │ └── index.html
├── Uno.Wasm.HttpRequestMessageExtensions
│ ├── BrowserRequestCache.cs
│ ├── BrowserRequestCredentials.cs
│ ├── BrowserRequestMode.cs
│ ├── Uno.Wasm.HttpRequestMessageExtensions.csproj
│ └── WebAssemblyHttpRequestMessageExtensions.cs
├── Uno.Wasm.LogProfiler
│ ├── LinkerConfig.xml
│ ├── LogProfiler.cs
│ ├── LogProfilerSupport.cs
│ └── Uno.Wasm.LogProfiler.csproj
├── Uno.Wasm.MetadataUpdater
│ ├── HotReloadAgent.cs
│ ├── LinkerConfig.xml
│ ├── Runtime.cs
│ ├── Uno.Wasm.MetadataUpdater.csproj
│ ├── UpdateDelta.cs
│ └── WebAssemblyHotReload.cs
├── Uno.Wasm.MixedModeRoslynSample
│ ├── Content
│ │ └── LockScreenLogo.scale-200.png
│ ├── LinkerConfig.xml
│ ├── Program.cs
│ ├── Uno.Wasm.MixedModeRoslynSample.csproj
│ ├── WasmCSS
│ │ └── test.css
│ ├── WasmScripts
│ │ └── test.js
│ ├── libman.json
│ ├── manifest.json
│ └── sdk
│ │ ├── 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.Core.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.ServiceModel.Duplex.dll
│ │ ├── System.ServiceModel.Http.dll
│ │ ├── System.ServiceModel.NetTcp.dll
│ │ ├── System.ServiceModel.Primitives.dll
│ │ ├── System.ServiceModel.Security.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
│ │ ├── mscorlib.dll
│ │ └── netstandard.dll
├── Uno.Wasm.MixedModeSample
│ ├── Content
│ │ └── LockScreenLogo.scale-200.png
│ ├── LinkerConfig.xml
│ ├── Program.cs
│ ├── Uno.Wasm.MixedModeSample.csproj
│ ├── WasmCSS
│ │ └── test.css
│ ├── WasmScripts
│ │ └── test.js
│ ├── libman.json
│ ├── manifest.json
│ └── wwwroot
│ │ └── dummy.json
├── Uno.Wasm.Node.Sample.Runner
│ ├── .gitignore
│ ├── README.md
│ ├── Uno.Wasm.Node.Sample.Runner.njsproj
│ ├── Validate.ps1
│ ├── app.js
│ ├── app.js.map
│ ├── app.ts
│ ├── package-lock.json
│ ├── package.json
│ └── tsconfig.json
├── Uno.Wasm.Node.Sample
│ ├── Content
│ │ └── LockScreenLogo.scale-200.png
│ ├── LinkerConfig.xml
│ ├── Program.cs
│ ├── Runtime.cs
│ ├── Uno.Wasm.Node.Sample.csproj
│ ├── WasmCSS
│ │ └── test.css
│ ├── WasmScripts
│ │ └── test.js
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.Sample.Library
│ ├── ClassLibrary01.cs
│ └── Uno.Wasm.Sample.Library.csproj
├── Uno.Wasm.Sample.RayTracer.Shared
│ ├── Benchmark.cs
│ ├── Program.cs
│ ├── Uno.Wasm.Sample.RayTracer.Shared.projitems
│ ├── Uno.Wasm.Sample.RayTracer.Shared.shproj
│ ├── WasmScripts
│ │ └── image.js
│ └── pwa-images
│ │ ├── android
│ │ ├── android-launchericon-144-144.png
│ │ ├── android-launchericon-192-192.png
│ │ ├── android-launchericon-48-48.png
│ │ ├── android-launchericon-512-512.png
│ │ ├── android-launchericon-72-72.png
│ │ └── android-launchericon-96-96.png
│ │ ├── chrome
│ │ ├── chrome-extensionmanagementpage-48-48.png
│ │ ├── chrome-favicon-16-16.png
│ │ └── chrome-installprocess-128-128.png
│ │ ├── firefox
│ │ ├── firefox-general-128-128.png
│ │ ├── firefox-general-16-16.png
│ │ ├── firefox-general-256-256.png
│ │ ├── firefox-general-32-32.png
│ │ ├── firefox-general-48-48.png
│ │ ├── firefox-general-64-64.png
│ │ ├── firefox-general-90-90.png
│ │ ├── firefox-marketplace-128-128.png
│ │ └── firefox-marketplace-512-512.png
│ │ ├── ios
│ │ ├── ios-appicon-1024-1024.png
│ │ ├── ios-appicon-120-120.png
│ │ ├── ios-appicon-152-152.png
│ │ ├── ios-appicon-180-180.png
│ │ ├── ios-appicon-76-76.png
│ │ ├── ios-launchimage-1024-768.png
│ │ ├── ios-launchimage-1242-2208.png
│ │ ├── ios-launchimage-1334-750.png
│ │ ├── ios-launchimage-1536-2048.png
│ │ ├── ios-launchimage-2048-1536.png
│ │ ├── ios-launchimage-2208-1242.png
│ │ ├── ios-launchimage-640-1136.png
│ │ ├── ios-launchimage-640-960.png
│ │ ├── ios-launchimage-750-1334.png
│ │ └── ios-launchimage-768-1024.png
│ │ ├── windows
│ │ ├── windows-smallsquare-24-24.png
│ │ ├── windows-smallsquare-30-30.png
│ │ ├── windows-smallsquare-42-42.png
│ │ ├── windows-smallsquare-54-54.png
│ │ ├── windows-splashscreen-1116-540.png
│ │ ├── windows-splashscreen-620-300.png
│ │ ├── windows-splashscreen-868-420.png
│ │ ├── windows-squarelogo-120-120.png
│ │ ├── windows-squarelogo-150-150.png
│ │ ├── windows-squarelogo-210-210.png
│ │ ├── windows-squarelogo-270-270.png
│ │ ├── windows-storelogo-50-50.png
│ │ ├── windows-storelogo-70-70.png
│ │ ├── windows-storelogo-90-90.png
│ │ ├── windowsphone-appicon-106-106.png
│ │ ├── windowsphone-appicon-44-44.png
│ │ ├── windowsphone-appicon-62-62.png
│ │ ├── windowsphone-mediumtile-150-150.png
│ │ ├── windowsphone-mediumtile-210-210.png
│ │ ├── windowsphone-mediumtile-360-360.png
│ │ ├── windowsphone-smalltile-170-170.png
│ │ ├── windowsphone-smalltile-71-71.png
│ │ ├── windowsphone-smalltile-99-99.png
│ │ ├── windowsphone-storelogo-120-120.png
│ │ ├── windowsphone-storelogo-50-50.png
│ │ └── windowsphone-storelogo-70-70.png
│ │ └── windows10
│ │ ├── SplashScreen.scale-100.png
│ │ ├── SplashScreen.scale-125.png
│ │ ├── SplashScreen.scale-150.png
│ │ ├── SplashScreen.scale-200.png
│ │ ├── SplashScreen.scale-400.png
│ │ ├── Square150x150Logo.scale-100.png
│ │ ├── Square150x150Logo.scale-125.png
│ │ ├── Square150x150Logo.scale-150.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square150x150Logo.scale-400.png
│ │ ├── Square310x310Logo.scale-100.png
│ │ ├── Square310x310Logo.scale-125.png
│ │ ├── Square310x310Logo.scale-150.png
│ │ ├── Square310x310Logo.scale-200.png
│ │ ├── Square310x310Logo.scale-400.png
│ │ ├── Square44x44Logo.scale-100.png
│ │ ├── Square44x44Logo.scale-125.png
│ │ ├── Square44x44Logo.scale-150.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-400.png
│ │ ├── Square44x44Logo.targetsize-16.png
│ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-24.png
│ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-256.png
│ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-48.png
│ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png
│ │ ├── Square71x71Logo.scale-100.png
│ │ ├── Square71x71Logo.scale-125.png
│ │ ├── Square71x71Logo.scale-150.png
│ │ ├── Square71x71Logo.scale-200.png
│ │ ├── Square71x71Logo.scale-400.png
│ │ ├── StoreLogo.png
│ │ ├── StoreLogo.scale-100.png
│ │ ├── StoreLogo.scale-125.png
│ │ ├── StoreLogo.scale-150.png
│ │ ├── StoreLogo.scale-200.png
│ │ ├── StoreLogo.scale-400.png
│ │ ├── Wide310x150Logo.scale-100.png
│ │ ├── Wide310x150Logo.scale-125.png
│ │ ├── Wide310x150Logo.scale-150.png
│ │ ├── Wide310x150Logo.scale-200.png
│ │ └── Wide310x150Logo.scale-400.png
├── Uno.Wasm.Sample.RayTracer
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.Sample.RayTracer.csproj
│ ├── aot.profile
│ ├── app.webmanifest
│ └── wwwroot
│ │ ├── staticwebapp.config.json
│ │ └── web.config
├── Uno.Wasm.Sample.Server.Net7
│ ├── Controllers
│ │ └── WeatherForecastController.cs
│ ├── Program.cs
│ ├── Uno.Wasm.Sample.Server.Net7.csproj
│ ├── WeatherForecast.cs
│ ├── appsettings.Development.json
│ └── appsettings.json
├── Uno.Wasm.Sample
│ ├── AdditionalContent
│ │ ├── SomeContent01.txt
│ │ ├── SomeContent02.txt
│ │ ├── SomeContent03.txt
│ │ └── SomeContent04.txt
│ ├── Content
│ │ └── LockScreenLogo.scale-200.png
│ ├── Program.cs
│ ├── Runtime.cs
│ ├── Uno.Wasm.Sample.projitems
│ ├── Uno.Wasm.Sample.shproj
│ ├── WasmCSS
│ │ └── test.css
│ ├── WasmScripts
│ │ ├── AppManifest.js
│ │ └── test.js
│ ├── libman.json
│ ├── manifest.json
│ └── sample.common.props
├── Uno.Wasm.SampleNet6.Aot
│ ├── LinkerConfig.xml
│ ├── Program.cs
│ ├── Runtime.cs
│ ├── Uno.Wasm.SampleNet6.Aot.csproj
│ ├── WasmCSS
│ │ └── test.css
│ ├── WasmScripts
│ │ ├── AppManifest.js
│ │ └── test.js
│ └── wwwroot
│ │ ├── favicon.ico
│ │ ├── pwa-images
│ │ ├── android
│ │ │ ├── android-launchericon-144-144.png
│ │ │ ├── android-launchericon-192-192.png
│ │ │ ├── android-launchericon-48-48.png
│ │ │ ├── android-launchericon-512-512.png
│ │ │ ├── android-launchericon-72-72.png
│ │ │ └── android-launchericon-96-96.png
│ │ ├── chrome
│ │ │ ├── chrome-extensionmanagementpage-48-48.png
│ │ │ ├── chrome-favicon-16-16.png
│ │ │ └── chrome-installprocess-128-128.png
│ │ ├── firefox
│ │ │ ├── firefox-general-128-128.png
│ │ │ ├── firefox-general-16-16.png
│ │ │ ├── firefox-general-256-256.png
│ │ │ ├── firefox-general-32-32.png
│ │ │ ├── firefox-general-48-48.png
│ │ │ ├── firefox-general-64-64.png
│ │ │ ├── firefox-general-90-90.png
│ │ │ ├── firefox-marketplace-128-128.png
│ │ │ └── firefox-marketplace-512-512.png
│ │ ├── ios
│ │ │ ├── ios-appicon-1024-1024.png
│ │ │ ├── ios-appicon-120-120.png
│ │ │ ├── ios-appicon-152-152.png
│ │ │ ├── ios-appicon-180-180.png
│ │ │ ├── ios-appicon-76-76.png
│ │ │ ├── ios-launchimage-1024-768.png
│ │ │ ├── ios-launchimage-1242-2208.png
│ │ │ ├── ios-launchimage-1334-750.png
│ │ │ ├── ios-launchimage-1536-2048.png
│ │ │ ├── ios-launchimage-2048-1536.png
│ │ │ ├── ios-launchimage-2208-1242.png
│ │ │ ├── ios-launchimage-640-1136.png
│ │ │ ├── ios-launchimage-640-960.png
│ │ │ ├── ios-launchimage-750-1334.png
│ │ │ └── ios-launchimage-768-1024.png
│ │ ├── windows
│ │ │ ├── windows-smallsquare-24-24.png
│ │ │ ├── windows-smallsquare-30-30.png
│ │ │ ├── windows-smallsquare-42-42.png
│ │ │ ├── windows-smallsquare-54-54.png
│ │ │ ├── windows-splashscreen-1116-540.png
│ │ │ ├── windows-splashscreen-620-300.png
│ │ │ ├── windows-splashscreen-868-420.png
│ │ │ ├── windows-squarelogo-120-120.png
│ │ │ ├── windows-squarelogo-150-150.png
│ │ │ ├── windows-squarelogo-210-210.png
│ │ │ ├── windows-squarelogo-270-270.png
│ │ │ ├── windows-storelogo-50-50.png
│ │ │ ├── windows-storelogo-70-70.png
│ │ │ ├── windows-storelogo-90-90.png
│ │ │ ├── windowsphone-appicon-106-106.png
│ │ │ ├── windowsphone-appicon-44-44.png
│ │ │ ├── windowsphone-appicon-62-62.png
│ │ │ ├── windowsphone-mediumtile-150-150.png
│ │ │ ├── windowsphone-mediumtile-210-210.png
│ │ │ ├── windowsphone-mediumtile-360-360.png
│ │ │ ├── windowsphone-smalltile-170-170.png
│ │ │ ├── windowsphone-smalltile-71-71.png
│ │ │ ├── windowsphone-smalltile-99-99.png
│ │ │ ├── windowsphone-storelogo-120-120.png
│ │ │ ├── windowsphone-storelogo-50-50.png
│ │ │ └── windowsphone-storelogo-70-70.png
│ │ └── windows10
│ │ │ ├── SplashScreen.scale-100.png
│ │ │ ├── SplashScreen.scale-125.png
│ │ │ ├── SplashScreen.scale-150.png
│ │ │ ├── SplashScreen.scale-200.png
│ │ │ ├── SplashScreen.scale-400.png
│ │ │ ├── Square150x150Logo.scale-100.png
│ │ │ ├── Square150x150Logo.scale-125.png
│ │ │ ├── Square150x150Logo.scale-150.png
│ │ │ ├── Square150x150Logo.scale-200.png
│ │ │ ├── Square150x150Logo.scale-400.png
│ │ │ ├── Square310x310Logo.scale-100.png
│ │ │ ├── Square310x310Logo.scale-125.png
│ │ │ ├── Square310x310Logo.scale-150.png
│ │ │ ├── Square310x310Logo.scale-200.png
│ │ │ ├── Square310x310Logo.scale-400.png
│ │ │ ├── Square44x44Logo.scale-100.png
│ │ │ ├── Square44x44Logo.scale-125.png
│ │ │ ├── Square44x44Logo.scale-150.png
│ │ │ ├── Square44x44Logo.scale-200.png
│ │ │ ├── Square44x44Logo.scale-400.png
│ │ │ ├── Square44x44Logo.targetsize-16.png
│ │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ │ │ ├── Square44x44Logo.targetsize-24.png
│ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ │ ├── Square44x44Logo.targetsize-256.png
│ │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ │ │ ├── Square44x44Logo.targetsize-48.png
│ │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png
│ │ │ ├── Square71x71Logo.scale-100.png
│ │ │ ├── Square71x71Logo.scale-125.png
│ │ │ ├── Square71x71Logo.scale-150.png
│ │ │ ├── Square71x71Logo.scale-200.png
│ │ │ ├── Square71x71Logo.scale-400.png
│ │ │ ├── StoreLogo.png
│ │ │ ├── StoreLogo.scale-100.png
│ │ │ ├── StoreLogo.scale-125.png
│ │ │ ├── StoreLogo.scale-150.png
│ │ │ ├── StoreLogo.scale-200.png
│ │ │ ├── StoreLogo.scale-400.png
│ │ │ ├── Wide310x150Logo.scale-100.png
│ │ │ ├── Wide310x150Logo.scale-125.png
│ │ │ ├── Wide310x150Logo.scale-150.png
│ │ │ ├── Wide310x150Logo.scale-200.png
│ │ │ └── Wide310x150Logo.scale-400.png
│ │ └── web.config
├── Uno.Wasm.SampleNet7
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.SampleNet7.csproj
│ ├── favicon.ico
│ ├── web.config
│ └── wwwroot
│ │ └── favicon.ico
├── Uno.Wasm.Static Linking
│ ├── LinkerConfig.xml
│ └── Uno.Wasm.StaticLinking.csproj
├── Uno.Wasm.StaticLinking.Aot.Net6
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.StaticLinking.Aot.Net6.csproj
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.StaticLinking.Aot.UITests
│ ├── Uno.Wasm.StaticLinking.Aot.UITests.njsproj
│ ├── aotTests.png
│ ├── app.js
│ ├── app.js.map
│ ├── app.ts
│ ├── example.png
│ ├── package-lock.json
│ ├── package.json
│ └── tsconfig.json
├── Uno.Wasm.StaticLinking.Embedded
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.StaticLinking.Embedded.csproj
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.StaticLinking.Interpreter
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.StaticLinking.Interpreter.csproj
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.StaticLinking.PgAot.Net6
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.StaticLinking.PgAot.Net6.csproj
│ ├── aot.profile
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.StaticLinking.PgAot.ProfileGen.Net6
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.StaticLinking.PgAot.ProfileGen.Net6.csproj
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.StaticLinking.Server.net7
│ ├── Controllers
│ │ └── WeatherForecastController.cs
│ ├── Program.cs
│ ├── Uno.Wasm.StaticLinking.Server.net7.csproj
│ ├── WeatherForecast.cs
│ ├── appsettings.Development.json
│ └── appsettings.json
├── Uno.Wasm.StaticLinking.Shared
│ ├── Common.props
│ ├── Program.cs
│ ├── Uno.Wasm.StaticLinking.Shared.projitems
│ ├── Uno.Wasm.StaticLinking.Shared.shproj
│ ├── Validations.props
│ ├── WasmScripts
│ │ └── test.js
│ ├── native
│ │ ├── side.a
│ │ │ └── 1.2
│ │ │ │ ├── side.a
│ │ │ │ └── st,simd
│ │ │ │ └── side.a
│ │ ├── side2.a
│ │ │ ├── 1.2
│ │ │ │ └── st,simd
│ │ │ │ │ └── side2.a
│ │ │ └── 1.3
│ │ │ │ └── side2.a
│ │ ├── side3.a
│ │ │ ├── 1.3
│ │ │ │ └── side3.a
│ │ │ └── 1.4
│ │ │ │ ├── side3.a
│ │ │ │ └── st,simd
│ │ │ │ └── side3.a
│ │ └── side4.a
│ │ │ ├── 1.3
│ │ │ └── side4.a
│ │ │ ├── 2.0
│ │ │ └── side4.a
│ │ │ ├── 3.1
│ │ │ ├── side4.a
│ │ │ └── st,simd
│ │ │ │ └── side4.a
│ │ │ └── 5.0
│ │ │ └── side4.a
│ ├── side_module
│ │ ├── build.sh
│ │ ├── hello.html
│ │ ├── hello.js
│ │ ├── hello.wasm
│ │ ├── hello.wasm.map
│ │ ├── hello.wast
│ │ ├── main.cpp
│ │ ├── main.wasm
│ │ ├── mysideModule.cpp
│ │ ├── pre.js
│ │ ├── server.py
│ │ ├── side.wasm
│ │ └── version_test.cpp
│ ├── test.cpp
│ └── test2.cpp
├── Uno.Wasm.StaticLinking.Simd.net7
│ ├── LinkerConfig.xml
│ └── Uno.Wasm.StaticLinking.Simd.net7.csproj
├── Uno.Wasm.StaticLinking.net7
│ ├── LinkerConfig.xml
│ └── Uno.Wasm.StaticLinking.net7.csproj
├── Uno.Wasm.Tests.AbsoluteIntermediate
│ ├── Directory.Build.props
│ ├── Program.cs
│ └── Uno.Wasm.Tests.AbsoluteIntermediate.csproj
├── Uno.Wasm.Tests.Electron
│ ├── Program.cs
│ ├── Uno.Wasm.Tests.Electron.csproj
│ ├── WasmScripts
│ │ └── test.js
│ └── wwwroot
│ │ ├── electron-main.js
│ │ └── package.json
├── Uno.Wasm.Tests.Empty
│ ├── Program.cs
│ └── Uno.Wasm.Test.Empty.csproj
├── Uno.Wasm.Tests.Shared
│ ├── Runtime.cs
│ ├── Uno.Wasm.Tests.Shared.projitems
│ └── Uno.Wasm.Tests.Shared.shproj
├── Uno.Wasm.Tests.TypeScript
│ ├── Program.cs
│ ├── Uno.Wasm.Tests.TypeScript.csproj
│ ├── WasmScripts
│ │ └── test.js
│ ├── ts
│ │ └── test.ts
│ └── tsconfig.json
├── Uno.Wasm.Threading.UITests
│ ├── Uno.Wasm.Threading.UITests.njsproj
│ ├── aotTests.png
│ ├── app.js
│ ├── app.js.map
│ ├── app.ts
│ ├── example.png
│ ├── package-lock.json
│ ├── package.json
│ └── tsconfig.json
├── Uno.Wasm.Threads.Aot
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.Threads.Aot.csproj
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.Threads.Shared
│ ├── Program.cs
│ ├── Uno.Wasm.Threads.Shared.projitems
│ ├── Uno.Wasm.Threads.Shared.shproj
│ └── WasmScripts
│ │ └── test.js
├── Uno.Wasm.Threads
│ ├── LinkerConfig.xml
│ ├── Uno.Wasm.Threads.csproj
│ └── wwwroot
│ │ └── web.config
├── Uno.Wasm.VersionChecker
│ ├── Program.cs
│ ├── Uno.Wasm.VersionChecker.csproj
│ └── UnoVersionExtractor.cs
├── Uno.Wasm.WebCIL
│ ├── Microsoft.NET.WebAssembly.Webcil
│ │ ├── Internal
│ │ │ └── Constants.cs
│ │ ├── WasmModuleReader.cs
│ │ ├── WebciHeader.cs
│ │ ├── WebcilConverter.cs
│ │ ├── WebcilReader.Reflection.cs
│ │ ├── WebcilReader.cs
│ │ ├── WebcilSectionHeader.cs
│ │ └── WebcilWasmWrapper.cs
│ ├── Uno.Wasm.WebCIL.csproj
│ └── WasmWebcil
│ │ ├── Extensions
│ │ ├── MathExtensions.cs
│ │ ├── StreamExtensions.cs
│ │ └── WebcilSectionHeaderExtensions.cs
│ │ ├── Helpers
│ │ └── WebcilWasmWrapperHelper.cs
│ │ ├── NT_Structs
│ │ ├── Constants.cs
│ │ ├── IMAGE_DATA_DIRECTORY.cs
│ │ ├── IMAGE_DOS_HEADER.cs
│ │ ├── IMAGE_FILE_HEADER.cs
│ │ ├── IMAGE_NT_HEADERS32.cs
│ │ ├── IMAGE_NT_HEADERS64.cs
│ │ ├── IMAGE_OPTIONAL_HEADER32.cs
│ │ ├── IMAGE_OPTIONAL_HEADER64.cs
│ │ └── IMAGE_SECTION_HEADER.cs
│ │ ├── WasmWebcilUnwrapper.cs
│ │ └── WebcilConverterUtil.cs
├── Uno.WasmSample WithSpace Aot
│ ├── Program.cs
│ ├── Uno.WasmSample.WithSpace.Aot.csproj
│ ├── Uno.WasmSample.WithSpace.Aot.xml
│ └── aot.profile
├── Uno.WasmSample WithSpace
│ ├── Program.cs
│ └── Uno.WasmSample.WithSpace.csproj
├── WasmAot.UITests
│ ├── README.md
│ ├── WasmAot.UITests.njsproj
│ ├── aotTests.png
│ ├── app.js
│ ├── app.js.map
│ ├── app.ts
│ ├── example.png
│ ├── package-lock.json
│ ├── package.json
│ └── tsconfig.json
└── nuget.config
└── version.json
/.appveyor.yml:
--------------------------------------------------------------------------------
1 | image: Visual Studio 2017
2 |
3 | branches:
4 | only:
5 | - master
6 | - stable
7 |
8 | # Don't create a build when a PR is opened
9 | skip_branch_with_pr: true
10 |
11 | nuget:
12 | disable_publish_on_pr: true
13 |
14 | skip_commits:
15 | files:
16 | - 'doc/**/*.*'
17 |
18 | init:
19 | - ps: git config --global core.autocrlf true
20 |
21 | build_script:
22 | - cmd: git submodule update --init --recursive
23 | - ps: .\build\build.ps1 -script build\build.cake
24 |
25 | artifacts:
26 | - path: .\build\nuget\*.nupkg
27 |
28 | deploy:
29 | provider: NuGet
30 | api_key:
31 | secure: q2moGyPXNP7agMjH6aHxbg8a9Q4ftB/al9aZPYL97Fdte0cZ+d1ak0yoBFc1eWNr
32 | skip_symbols: true
33 | artifact: /.*\.nupkg/
--------------------------------------------------------------------------------
/.github/workflows/conventional-commits.yml:
--------------------------------------------------------------------------------
1 | name: Conventional Commits
2 |
3 | on:
4 | pull_request:
5 | branches:
6 | - master
7 |
8 | env:
9 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10 |
11 | jobs:
12 | commitsar:
13 | name: Check all commits
14 | runs-on: ubuntu-latest
15 |
16 | steps:
17 | - uses: actions/checkout@v1
18 | - name: Run commitsar
19 | uses: docker://outillage/commitsar:0.11.2
20 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/.gitmodules
--------------------------------------------------------------------------------
/build/ci/.markdownlint.json:
--------------------------------------------------------------------------------
1 | {
2 | "default": true,
3 | "line-length": false,
4 | "commands-show-output": false,
5 | "no-bare-urls": false,
6 | "no-inline-html": false,
7 | "no-duplicate-heading": false,
8 | "MD051": false
9 | }
--------------------------------------------------------------------------------
/build/ci/gitversion.yml:
--------------------------------------------------------------------------------
1 | steps:
2 | - pwsh: |
3 | dotnet tool uninstall nbgv -g
4 | dotnet tool install nbgv -g --version 3.6.139
5 | nbgv cloud -a
6 | displayName: Version with NBGV
7 | name: NBGV
8 |
9 | - pwsh: |
10 | $InformationalVersion="$(NBGV_SemVer2)+$(NBGV_GitCommitId)-$(NBGV_BuildingRef)".Replace("refs/heads/","").Replace("/","-")
11 | echo "##vso[task.setvariable variable=NBGV_InformationalVersion;]$InformationalVersion"
12 | echo "##vso[task.setvariable variable=NBGV_InformationalVersion;isOutput=true;]$InformationalVersion"
13 | echo "Informational Version: $InformationalVersion"
14 |
15 | displayName: Generate Informational Version
16 | name: NBGV_InformationalVersion
--------------------------------------------------------------------------------
/build/gitpod/build-all.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | export EMSCRIPTEN_VERSION=1.39.11
3 | export NUGET_PACKAGES=/workspace/.nuget
4 |
5 | cd /workspace/Uno.Wasm.Bootstrap
6 |
7 | source ~/emsdk/emsdk_env.sh
8 |
9 | msbuild /r /t:Publish /p:Configuration=Release /p:WasmShellMonoRuntimeExecutionMode=Interpreter src/Uno.Wasm.Bootstrap.sln
--------------------------------------------------------------------------------
/build/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/build/icon.png
--------------------------------------------------------------------------------
/build/nuget/nuget.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/build/nuget/nuget.exe
--------------------------------------------------------------------------------
/build/scripts/run-tests-server.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | set -e
3 |
4 | cleanup() {
5 | kill %%
6 | }
7 | trap cleanup 0
8 |
9 | npm install @azure/static-web-apps-cli@0.8.3
10 | SWA_PATH=`pwd`/node_modules/.bin/swa
11 |
12 | export BOOTSTRAP_APP_PATH=$1
13 | export BOOTSTRAP_TEST_RUNNER_PATH=$2
14 | export BOOTSTRAP_TEST_RUNNER_URL=$3
15 |
16 | echo "BOOTSTRAP_APP_PATH=$BOOTSTRAP_APP_PATH"
17 | echo "BOOTSTRAP_TEST_RUNNER_PATH=$BOOTSTRAP_TEST_RUNNER_PATH"
18 | echo "BOOTSTRAP_TEST_RUNNER_URL=$BOOTSTRAP_TEST_RUNNER_URL"
19 |
20 | cd $BOOTSTRAP_APP_PATH
21 | dotnet build -c Release
22 |
23 | # We're not running using the published build, so we need to set
24 | # environment first.
25 | export ASPNETCORE_ENVIRONMENT=development
26 | dotnet run -c Release --no-build --urls=http://localhost:8000/ &
27 | sleep 5
28 |
29 | cd $BOOTSTRAP_TEST_RUNNER_PATH
30 | npm install
31 | node app
--------------------------------------------------------------------------------
/build/scripts/run-tests-swa.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | set -e
3 |
4 | cleanup() {
5 | kill %%
6 | }
7 | trap cleanup 0
8 |
9 | npm install @azure/static-web-apps-cli@0.8.3
10 | SWA_PATH=`pwd`/node_modules/.bin/swa
11 |
12 | export BOOTSTRAP_APP_PATH=$1
13 | export BOOTSTRAP_TEST_RUNNER_PATH=$2
14 | export BOOTSTRAP_TEST_RUNNER_URL=$3
15 |
16 | echo "BOOTSTRAP_APP_PATH=$BOOTSTRAP_APP_PATH"
17 | echo "BOOTSTRAP_TEST_RUNNER_PATH=$BOOTSTRAP_TEST_RUNNER_PATH"
18 | echo "BOOTSTRAP_TEST_RUNNER_URL=$BOOTSTRAP_TEST_RUNNER_URL"
19 |
20 | cd $BOOTSTRAP_APP_PATH
21 | $SWA_PATH start --port 8000 --app-location "$BOOTSTRAP_APP_PATH" &
22 | sleep 5
23 |
24 | cd $BOOTSTRAP_TEST_RUNNER_PATH
25 | npm install
26 | node app
--------------------------------------------------------------------------------
/build/scripts/run-tests-windows-server.ps1:
--------------------------------------------------------------------------------
1 | Set-PSDebug -Trace 1
2 |
3 | $BOOTSTRAP_APP_PATH=$args[0]
4 | $BOOTSTRAP_APP_EXE=$args[1]
5 | $BOOTSTRAP_TEST_RUNNER_PATH=$args[2]
6 | $env:BOOTSTRAP_TEST_RUNNER_URL=$args[3]
7 |
8 | cd $BOOTSTRAP_APP_PATH
9 | $serverProcess = Start-Process .\$BOOTSTRAP_APP_EXE -NoNewWindow -PassThru --urls=$env:BOOTSTRAP_TEST_RUNNER_URL
10 |
11 | Try
12 | {
13 | cd $BOOTSTRAP_TEST_RUNNER_PATH
14 | npm install
15 | node app
16 | }
17 | Finally
18 | {
19 | $serverProcess.Kill()
20 | }
--------------------------------------------------------------------------------
/build/scripts/run-tests-windows.ps1:
--------------------------------------------------------------------------------
1 | dotnet tool install dotnet-serve --version 1.10.175 --tool-path $BUILD_SOURCESDIRECTORY\build\tools
2 | $env:PATH="$env:PATH;$BUILD_SOURCESDIRECTORY\build\tools"
3 |
4 | $BOOTSTRAP_APP_PATH=$args[0]
5 | $BOOTSTRAP_TEST_RUNNER_PATH=$args[1]
6 | $env:BOOTSTRAP_TEST_RUNNER_URL=$args[2]
7 |
8 | cd $BOOTSTRAP_APP_PATH
9 | $serverProcess = Start-Process dotnet -ArgumentList 'serve -p 8000 -c -b -h "Cross-Origin-Embedder-Policy: require-corp" -h "Cross-Origin-Opener-Policy: same-origin"' -NoNewWindow -PassThru
10 |
11 | Try
12 | {
13 | cd $BOOTSTRAP_TEST_RUNNER_PATH
14 | npm install
15 | node app
16 | }
17 | Finally
18 | {
19 | $serverProcess.Kill()
20 | }
--------------------------------------------------------------------------------
/build/scripts/run-tests.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | set -e
3 |
4 | cleanup() {
5 | kill %%
6 | }
7 | trap cleanup 0
8 |
9 | export BOOTSTRAP_APP_PATH=$1
10 | export BOOTSTRAP_TEST_RUNNER_PATH=$2
11 | export BOOTSTRAP_TEST_RUNNER_URL=$3
12 |
13 | # install dotnet serve / Remove as needed
14 | dotnet tool uninstall dotnet-serve -g || true
15 | dotnet tool uninstall dotnet-serve --tool-path $BUILD_SOURCESDIRECTORY/build/tools || true
16 | dotnet tool install dotnet-serve --version 1.10.175 --tool-path $BUILD_SOURCESDIRECTORY/build/tools || true
17 | export PATH="$PATH:$BUILD_SOURCESDIRECTORY/build/tools"
18 |
19 | cd $BOOTSTRAP_APP_PATH
20 | dotnet serve -p 8000 -c -b -h "Cross-Origin-Embedder-Policy: require-corp" -h "Cross-Origin-Opener-Policy: same-origin" &
21 | sleep 5
22 | cd $BOOTSTRAP_TEST_RUNNER_PATH
23 | npm install
24 | node app
--------------------------------------------------------------------------------
/build/signing/SignClient.json:
--------------------------------------------------------------------------------
1 | {
2 | "SignClient": {
3 | "AzureAd": {
4 | "AADInstance": "https://login.microsoftonline.com/",
5 | "ClientId": "80441c68-7fd8-4866-8dd1-8c78ff585a8a",
6 | "TenantId": "a297d6c0-b635-41a3-b1e3-558efe71e413"
7 | },
8 | "Service": {
9 | "Url": "https://uno-signservice.azurewebsites.net",
10 | "ResourceId": "https://SignService.platformuno.onmicrosoft.com/6dd8824b-6147-4b02-a1af-ea83b0ffebdb"
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/build/tools/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/doc/features-4gb.md:
--------------------------------------------------------------------------------
1 | ---
2 | uid: UnoWasmBootstrap.Features.4gb
3 | ---
4 |
5 | # 4GB memory support
6 |
7 | The support for 4GB memory space is available by adding the following configuration:
8 |
9 | ```xml
10 |
11 |
12 |
13 | ```
14 |
15 | The configuration can also be detected at runtime using the `UNO_BOOTSTRAP_EMSCRIPTEN_MAXIMUM_MEMORY` environment variable, which will be set to `4GB` once set.
16 |
--------------------------------------------------------------------------------
/doc/features-idbfs.md:
--------------------------------------------------------------------------------
1 | ---
2 | uid: UnoWasmBootstrap.Features.idbfs
3 | ---
4 |
5 | # Support for IDBFS
6 |
7 | In order to support emulated filesystem using [IDBFS](https://emscripten.org/docs/api_reference/Filesystem-API.html#filesystem-api-idbfs), add the following to your `.csproj`:
8 |
9 | ```xml
10 |
11 | true
12 |
13 | ```
14 |
15 | Note that this property is a shortcut to this equivalent configuration:
16 |
17 | ```xml
18 |
19 |
20 |
21 |
22 | ```
23 |
--------------------------------------------------------------------------------
/doc/features-pre-compression.md:
--------------------------------------------------------------------------------
1 | ---
2 | uid: UnoWasmBootstrap.Features.PreCompression
3 | ---
4 |
5 | # Pre-Compression support
6 |
7 | Pre-compression support is provided by the .NET SDK, using the `EnableDefaultCompressedItems` feature.
8 |
--------------------------------------------------------------------------------
/src/Directory.Build.targets:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/LongPathTest/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Uno.Wasm.Test.Empty
6 | {
7 | class Program
8 | {
9 | static void Main(string[] args)
10 | {
11 | Console.WriteLine("Main");
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/LongPathTest/Uno.Wasm.LongPath.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | Exe
6 | false
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | false
19 | true
20 | TargetFramework
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/LongPathTest/wwwroot/this_is_a_very_long_file_name_that_should_not_fail_if_it_is_located_in_a_folder_path_that_is_very_long_so_we_make_a_very_long_name_to_try_and_make_it_fail_this_is_a_very_long_file_name.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.AotProfiler/AotProfilerSupport.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.CompilerServices;
3 |
4 | namespace Uno
5 | {
6 | public static partial class AotProfilerSupport
7 | {
8 | //
9 | // Can be called by the app to stop profilings
10 | //
11 | [MethodImpl(MethodImplOptions.NoInlining)]
12 | [System.Runtime.InteropServices.JavaScript.JSExport()]
13 | public static void StopProfile()
14 | => Console.WriteLine("Stopping AOT profile");
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.AotProfiler/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.AotProfiler/Uno.Wasm.AotProfiler.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | net10.0
4 | false
5 | true
6 |
7 |
8 |
9 |
10 | $(AssemblyName).xml
11 |
12 |
13 |
14 |
15 |
16 | <_BinaryOutputFiles Include="$(TargetDir)\Uno.Wasm.AotProfiler.*" />
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap-packages-only.slnf:
--------------------------------------------------------------------------------
1 | {
2 | "solution": {
3 | "path": "Uno.Wasm.Bootstrap.sln",
4 | "projects": [
5 | "Uno.Wasm.AotProfiler\\Uno.Wasm.AotProfiler.csproj",
6 | "Uno.Wasm.Bootstrap.DevServer\\Uno.Wasm.Bootstrap.DevServer.csproj.csproj",
7 | "Uno.Wasm.Bootstrap.Server\\Uno.Wasm.Bootstrap.Server.csproj",
8 | "Uno.Wasm.Bootstrap.UnitTests\\Uno.Wasm.Bootstrap.UnitTests.csproj",
9 | "Uno.Wasm.Bootstrap\\Uno.Wasm.Bootstrap.csproj",
10 | "Uno.Wasm.HttpRequestMessageExtensions\\Uno.Wasm.HttpRequestMessageExtensions.csproj",
11 | "Uno.Wasm.LogProfiler\\Uno.Wasm.LogProfiler.csproj",
12 | "Uno.Wasm.MetadataUpdater\\Uno.Wasm.MetadataUpdater.csproj",
13 | "Uno.Wasm.VersionChecker\\Uno.Wasm.VersionChecker.csproj",
14 | "Uno.Wasm.WebCIL\\Uno.Wasm.WebCIL.csproj"
15 | ]
16 | }
17 | }
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap.DevServer/Uno.Wasm.Bootstrap.DevServer.csproj.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | Uno.Wasm.Bootstrap.DevServer
6 | true
7 | false
8 | true
9 |
10 |
11 |
12 | [Deprecated] This package is not needed anymore and can be removed
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap.Server/build/Uno.Wasm.Bootstrap.Server.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap.UnitTests/Uno.Wasm.Bootstrap.UnitTests.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 |
6 | false
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 |
3 | [assembly: InternalsVisibleTo("Uno.Wasm.Bootstrap.UnitTests")]
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/DeployMode.cs:
--------------------------------------------------------------------------------
1 | namespace Uno.Wasm.Bootstrap
2 | {
3 | internal enum DeployMode : byte
4 | {
5 | None,
6 | Package,
7 | Root
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/Extensions/IsInternalInit.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Linq;
3 |
4 | #if !NET6_0_OR_GREATER
5 | namespace System.Runtime.CompilerServices;
6 | internal static class IsExternalInit
7 | {
8 | }
9 | #endif
10 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/Externals/Mono.Profiler.Aot/ProfileBase.cs:
--------------------------------------------------------------------------------
1 | // Licensed to the .NET Foundation under one or more agreements.
2 | // The .NET Foundation licenses this file to you under the MIT license.
3 | // source https://github.com/mono/mono/commits/a44926a5be1c648deec836e9cdda3c93e25f9a51
4 | namespace Mono.Profiler.Aot {
5 | public abstract class ProfileBase {
6 |
7 | internal enum RecordType {
8 | NONE = 0,
9 | IMAGE = 1,
10 | TYPE = 2,
11 | GINST = 3,
12 | METHOD = 4
13 | }
14 |
15 | internal enum MonoTypeEnum {
16 | MONO_TYPE_CLASS = 0x12,
17 | }
18 |
19 | internal const string MAGIC = "AOTPROFILE";
20 | internal const int MAJOR_VERSION = 1;
21 | internal const int MINOR_VERSION = 0;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.Publish.targets:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/build/Uno.Wasm.Bootstrap.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/ts/Entrypoint.js:
--------------------------------------------------------------------------------
1 | ///
2 | Uno.WebAssembly.Bootstrap.Bootstrapper.bootstrap();
3 | //# sourceMappingURL=Entrypoint.js.map
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/ts/Entrypoint.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"Entrypoint.js","sourceRoot":"","sources":["Entrypoint.ts"],"names":[],"mappings":"AAAA,uDAAuD;AACvD,GAAG,CAAC,WAAW,CAAC,SAAS,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC"}
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/ts/Entrypoint.ts:
--------------------------------------------------------------------------------
1 | ///
2 | Uno.WebAssembly.Bootstrap.Bootstrapper.bootstrap();
3 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/UnoConfig.js:
--------------------------------------------------------------------------------
1 | //# sourceMappingURL=UnoConfig.js.map
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/UnoConfig.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"UnoConfig.js","sourceRoot":"","sources":["UnoConfig.ts"],"names":[],"mappings":""}
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/ts/Uno/WebAssembly/UnoConfig.ts:
--------------------------------------------------------------------------------
1 | namespace Uno.WebAssembly.Bootstrap {
2 |
3 | export interface UnoConfig {
4 | uno_remote_managedpath: string;
5 |
6 | uno_app_base: string;
7 |
8 | uno_dependencies: string[];
9 |
10 | uno_main: string;
11 |
12 | assemblyFileExtension: string;
13 |
14 | assemblyFileNameObfuscationMode: string;
15 |
16 | enable_pwa: boolean;
17 |
18 | offline_files: string[];
19 |
20 | emcc_exported_runtime_methods?: string[];
21 |
22 | uno_shell_mode: string;
23 |
24 | environmentVariables?: {
25 | [i: string]: string;
26 | };
27 |
28 | generate_aot_profile?: boolean;
29 |
30 | uno_enable_tracing?: boolean;
31 |
32 | uno_debugging_enabled?: boolean;
33 |
34 | uno_runtime_options?: string[];
35 |
36 | uno_load_all_satellite_resources?: string[];
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Bootstrap/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "none",
4 | "declaration": true,
5 | "diagnostics": true,
6 | "noImplicitAny": true,
7 | "outFile": "obj/uno-bootstrap.js",
8 | "removeComments": true,
9 | "locale": "en-US",
10 | "target": "ES2020",
11 | "lib": [ "ES2020", "DOM", "ES2015" ]
12 | },
13 | "compileOnSave": false,
14 | "include": [
15 | "ts/**/*"
16 | ]
17 | }
18 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.App/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.App/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Embedded.App/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.App/wwwroot/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.Host/Program.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.AspNetCore.Hosting;
2 | using Microsoft.Extensions.Configuration;
3 | using Microsoft.Extensions.Hosting;
4 | using Microsoft.Extensions.Logging;
5 | using System;
6 | using System.Collections.Generic;
7 | using System.Linq;
8 | using System.Threading.Tasks;
9 |
10 | namespace Uno.Wasm.Embedded.Host
11 | {
12 | public class Program
13 | {
14 | public static void Main(string[] args) =>
15 | CreateHostBuilder(args)
16 | .Build()
17 | .Run();
18 |
19 | public static IHostBuilder CreateHostBuilder(string[] args) =>
20 | Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(args)
21 | .ConfigureWebHostDefaults(webBuilder =>
22 | {
23 | webBuilder.UseStartup();
24 | });
25 | }
26 | }
27 |
28 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.Host/Uno.Wasm.Embedded.Host.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net6.0
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.Host/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft": "Warning",
6 | "Microsoft.Hosting.Lifetime": "Information"
7 | }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Embedded.Host/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft": "Warning",
6 | "Microsoft.Hosting.Lifetime": "Information"
7 | }
8 | },
9 | "AllowedHosts": "*"
10 | }
11 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.LogProfiler/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.LogProfiler/LogProfiler.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 |
3 | namespace Mono.Profiler.Log
4 | {
5 | ///
6 | /// Internal calls to match with https://github.com/dotnet/runtime/blob/release/6.0/src/mono/mono/profiler/log.c#L4061-L4097
7 | ///
8 | internal class LogProfiler
9 | {
10 | [MethodImplAttribute(MethodImplOptions.InternalCall)]
11 | public extern static void TriggerHeapshot();
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.LogProfiler/Uno.Wasm.LogProfiler.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | net10.0
4 | false
5 | true
6 |
7 |
8 |
9 |
10 | $(AssemblyName).xml
11 |
12 |
13 |
14 |
15 |
16 | <_BinaryOutputFiles Include="$(TargetDir)\Uno.Wasm.LogProfiler.*" />
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.MetadataUpdater/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.MetadataUpdater/Runtime.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using System.Runtime.InteropServices.ComTypes;
5 | using System.Runtime.InteropServices.JavaScript;
6 |
7 | namespace WebAssembly
8 | {
9 | internal sealed class Runtime
10 | {
11 | ///
12 | /// Invokes Javascript code in the hosting environment
13 | ///
14 | internal static string InvokeJS(string str)
15 | => Interop.InvokeJS(str);
16 | }
17 |
18 | internal static partial class Interop
19 | {
20 | [JSImport("globalThis.Uno.WebAssembly.Bootstrap.Bootstrapper.invokeJS")]
21 | public static partial string InvokeJS(string value);
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.MetadataUpdater/Uno.Wasm.MetadataUpdater.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | net10.0
4 | false
5 | true
6 | enable
7 |
8 |
9 |
10 |
11 | $(AssemblyName).xml
12 |
13 |
14 |
15 |
16 |
17 | <_MetadataUpdaterOutputFiles Include="$(TargetDir)\Uno.Wasm.MetadataUpdater.*" />
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.MetadataUpdater/UpdateDelta.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Uno.Wasm.MetadataUpdate;
4 |
5 | internal sealed class UpdateDelta
6 | {
7 | public Guid ModuleId { get; set; }
8 |
9 | public byte[] MetadataDelta { get; set; } = default!;
10 |
11 | public byte[] ILDelta { get; set; } = default!;
12 |
13 | public byte[]? PdbBytes { get; set; }
14 |
15 | public int[]? UpdatedTypes { get; set; }
16 | }
17 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/Content/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/Content/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | define(() => {
2 | var txt = document.createTextNode("Loaded !");
3 | var parent = document.getElementById('uno-body');
4 | parent.insertBefore(txt, parent.lastChild);
5 | });
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/libman.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0",
3 | "defaultProvider": "cdnjs",
4 | "libraries": []
5 | }
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "dir": "ltr",
3 | "lang": "en-us",
4 | "name": "Uno.Wasm.Sample",
5 | "scope": "/",
6 | "display": "browser",
7 | "start_url": "/",
8 | "short_name": "Uno.Wasm.Sample",
9 | "theme_color": "transparent",
10 | "description": "A sample PWA for testing purposes",
11 | "orientation": "any",
12 | "background_color": "transparent",
13 | "related_applications": [],
14 | "prefer_related_applications": false,
15 | "icons": []
16 | }
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/Microsoft.Win32.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/Microsoft.Win32.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/Microsoft.Win32.Registry.AccessControl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/Microsoft.Win32.Registry.AccessControl.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/Microsoft.Win32.Registry.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/Microsoft.Win32.Registry.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.AppContext.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.AppContext.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Buffers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Buffers.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.Concurrent.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.Concurrent.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.NonGeneric.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.NonGeneric.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.Specialized.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.Specialized.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Collections.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.Annotations.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.Annotations.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.EventBasedAsync.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.EventBasedAsync.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.TypeConverter.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.TypeConverter.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ComponentModel.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Console.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Console.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Core.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Core.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Data.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Data.Common.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Data.SqlClient.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Data.SqlClient.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Contracts.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Contracts.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Debug.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Debug.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.FileVersionInfo.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.FileVersionInfo.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Process.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Process.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.StackTrace.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.StackTrace.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.TextWriterTraceListener.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.TextWriterTraceListener.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Tools.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Tools.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.TraceEvent.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.TraceEvent.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.TraceSource.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.TraceSource.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Tracing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Diagnostics.Tracing.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Drawing.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Drawing.Common.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Drawing.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Drawing.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Dynamic.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Dynamic.Runtime.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Globalization.Calendars.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Globalization.Calendars.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Globalization.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Globalization.Extensions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Globalization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Globalization.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.Compression.ZipFile.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.Compression.ZipFile.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.AccessControl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.AccessControl.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.DriveInfo.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.DriveInfo.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.Watcher.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.Watcher.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.FileSystem.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.IsolatedStorage.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.IsolatedStorage.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.MemoryMappedFiles.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.MemoryMappedFiles.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.Pipes.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.Pipes.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.UnmanagedMemoryStream.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.UnmanagedMemoryStream.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.IO.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.Expressions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.Expressions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.Parallel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.Parallel.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.Queryable.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.Queryable.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Linq.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Memory.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Memory.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.AuthenticationManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.AuthenticationManager.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Cache.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Cache.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.HttpListener.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.HttpListener.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Mail.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Mail.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.NameResolution.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.NameResolution.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.NetworkInformation.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.NetworkInformation.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Ping.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Ping.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Requests.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Requests.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Security.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Security.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.ServicePoint.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.ServicePoint.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Sockets.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Sockets.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Utilities.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.Utilities.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.WebHeaderCollection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.WebHeaderCollection.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.WebSockets.Client.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.WebSockets.Client.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.WebSockets.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Net.WebSockets.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ObjectModel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ObjectModel.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.DispatchProxy.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.DispatchProxy.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Emit.ILGeneration.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Emit.ILGeneration.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Emit.Lightweight.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Emit.Lightweight.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Emit.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Emit.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Extensions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.TypeExtensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.TypeExtensions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Reflection.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.Reader.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.Reader.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.ReaderWriter.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.ReaderWriter.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.ResourceManager.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.ResourceManager.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.Writer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Resources.Writer.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.CompilerServices.VisualC.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.CompilerServices.VisualC.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Extensions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Handles.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Handles.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.InteropServices.RuntimeInformation.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.InteropServices.RuntimeInformation.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.InteropServices.WindowsRuntime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.InteropServices.WindowsRuntime.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.InteropServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.InteropServices.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Loader.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Loader.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Numerics.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Numerics.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Formatters.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Formatters.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Json.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Xml.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.Serialization.Xml.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Runtime.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.AccessControl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.AccessControl.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Claims.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Claims.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Algorithms.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Algorithms.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Cng.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Cng.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Csp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Csp.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.DeriveBytes.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.DeriveBytes.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encoding.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encoding.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.Aes.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.Aes.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.ECDiffieHellman.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.ECDiffieHellman.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.ECDsa.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.ECDsa.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Encryption.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Hashing.Algorithms.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Hashing.Algorithms.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Hashing.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Hashing.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.OpenSsl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.OpenSsl.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Pkcs.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Pkcs.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.ProtectedData.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.ProtectedData.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.RSA.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.RSA.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.RandomNumberGenerator.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.RandomNumberGenerator.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.X509Certificates.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Cryptography.X509Certificates.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Principal.Windows.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Principal.Windows.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Principal.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.Principal.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.SecureString.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Security.SecureString.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Duplex.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Duplex.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Http.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Http.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.NetTcp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.NetTcp.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Security.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceModel.Security.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceProcess.ServiceController.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ServiceProcess.ServiceController.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.Encoding.CodePages.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.Encoding.CodePages.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.Encoding.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.Encoding.Extensions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.Encoding.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.Encoding.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.RegularExpressions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Text.RegularExpressions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.AccessControl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.AccessControl.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Overlapped.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Overlapped.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Tasks.Extensions.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Tasks.Extensions.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Tasks.Parallel.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Tasks.Parallel.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Tasks.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Tasks.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Thread.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Thread.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.ThreadPool.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.ThreadPool.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Timer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.Timer.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Threading.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.ValueTuple.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.ReaderWriter.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.ReaderWriter.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XDocument.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XDocument.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XPath.XDocument.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XPath.XDocument.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XPath.XmlDocument.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XPath.XmlDocument.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XPath.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XPath.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XmlDocument.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XmlDocument.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XmlSerializer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.XmlSerializer.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.Xsl.Primitives.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/System.Xml.Xsl.Primitives.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/mscorlib.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/mscorlib.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeRoslynSample/sdk/netstandard.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeRoslynSample/sdk/netstandard.dll
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeSample/Content/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.MixedModeSample/Content/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeSample/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeSample/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | define(() => {
2 | var txt = document.createTextNode("Loaded !");
3 | var parent = document.getElementById('uno-body');
4 | parent.insertBefore(txt, parent.lastChild);
5 | });
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeSample/libman.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0",
3 | "defaultProvider": "cdnjs",
4 | "libraries": []
5 | }
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeSample/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "dir": "ltr",
3 | "lang": "en-us",
4 | "name": "Uno.Wasm.Sample",
5 | "scope": "/",
6 | "display": "browser",
7 | "start_url": "/",
8 | "short_name": "Uno.Wasm.Sample",
9 | "theme_color": "transparent",
10 | "description": "A sample PWA for testing purposes",
11 | "orientation": "any",
12 | "background_color": "transparent",
13 | "related_applications": [],
14 | "prefer_related_applications": false,
15 | "icons": []
16 | }
--------------------------------------------------------------------------------
/src/Uno.Wasm.MixedModeSample/wwwroot/dummy.json:
--------------------------------------------------------------------------------
1 | {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/.gitignore:
--------------------------------------------------------------------------------
1 | app
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/README.md:
--------------------------------------------------------------------------------
1 | # Uno.Wasm.Node.Sample.Runner
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/Validate.ps1:
--------------------------------------------------------------------------------
1 | $testParameters = 'test1; test2'
2 |
3 | $appOutput = node app test1 test2
4 |
5 | echo "App output: "
6 | echo $appOutput
7 |
8 |
9 | $result = $appOutput | Select-String -Pattern $testParameters -CaseSensitive -SimpleMatch
10 |
11 | if(!$result){
12 | throw "Unable to find $($testParameters) in app output";
13 | }
14 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/app.js:
--------------------------------------------------------------------------------
1 | global.Module = require("./app/dotnet");
2 | //# sourceMappingURL=app.js.map
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/app.js.map:
--------------------------------------------------------------------------------
1 | {"version":3,"file":"app.js","sourceRoot":"","sources":["app.ts"],"names":[],"mappings":"AAAM,MAAO,CAAC,MAAM,GAAG,OAAO,CAAC,cAAc,CAAC,CAAC"}
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/app.ts:
--------------------------------------------------------------------------------
1 | (global).Module = require("./app/dotnet");
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uno.wasm.node.sample.runner",
3 | "version": "0.0.0",
4 | "lockfileVersion": 1,
5 | "requires": true,
6 | "dependencies": {
7 | "@types/node": {
8 | "version": "8.10.66",
9 | "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz",
10 | "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==",
11 | "dev": true
12 | },
13 | "typescript": {
14 | "version": "3.5.1",
15 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.1.tgz",
16 | "integrity": "sha512-64HkdiRv1yYZsSe4xC1WVgamNigVYjlssIoaH2HcZF0+ijsk5YK2g0G34w9wJkze8+5ow4STd22AynfO6ZYYLw==",
17 | "dev": true
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uno.wasm.node.sample.runner",
3 | "version": "0.0.0",
4 | "description": "Uno.Wasm.Node.Sample.Runner",
5 | "main": "app.js",
6 | "author": {
7 | "name": ""
8 | },
9 | "scripts": {
10 | "build": "tsc --build",
11 | "clean": "tsc --build --clean"
12 | },
13 | "devDependencies": {
14 | "@types/node": "^14.14.7",
15 | "typescript": "^4.0.5"
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample.Runner/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "target": "es6",
5 | "lib": ["es6"],
6 | "sourceMap": true
7 | },
8 | "exclude": [
9 | "node_modules"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample/Content/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Node.Sample/Content/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample/Runtime.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 |
3 | namespace WebAssembly
4 | {
5 | internal sealed class Runtime
6 | {
7 | [MethodImplAttribute(MethodImplOptions.InternalCall)]
8 | public static extern string InvokeJS(string str, out int exceptional_result);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Node.Sample/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | console.log("Additional test module");
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Library/ClassLibrary01.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 |
3 | [assembly: AssemblyMetadata("IsTrimmable", "True")]
4 |
5 | namespace Uno.Wasm.Sample.Library
6 | {
7 | public class ClassLibrary01
8 | {
9 | private static void Unused()
10 | => typeof(Microsoft.CodeAnalysis.Accessibility).ToString();
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Library/Uno.Wasm.Sample.Library.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netstandard2.0
5 | enable
6 | enable
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-144-144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-144-144.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-192-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-192-192.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-48-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-512-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-512-512.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-72-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-72-72.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-96-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/android/android-launchericon-96-96.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/chrome/chrome-extensionmanagementpage-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/chrome/chrome-extensionmanagementpage-48-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/chrome/chrome-favicon-16-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/chrome/chrome-favicon-16-16.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/chrome/chrome-installprocess-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/chrome/chrome-installprocess-128-128.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-128-128.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-16-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-16-16.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-256-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-256-256.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-32-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-32-32.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-48-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-64-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-64-64.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-90-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-general-90-90.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-marketplace-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-marketplace-128-128.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-marketplace-512-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/firefox/firefox-marketplace-512-512.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-1024-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-1024-1024.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-120-120.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-152-152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-152-152.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-180-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-180-180.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-76-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-appicon-76-76.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1024-768.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1024-768.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1242-2208.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1242-2208.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1334-750.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1334-750.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1536-2048.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-1536-2048.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-2048-1536.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-2048-1536.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-2208-1242.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-2208-1242.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-640-1136.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-640-1136.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-640-960.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-640-960.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-750-1334.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-750-1334.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-768-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/ios/ios-launchimage-768-1024.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-24-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-24-24.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-30-30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-30-30.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-42-42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-42-42.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-54-54.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-smallsquare-54-54.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-splashscreen-1116-540.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-splashscreen-1116-540.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-splashscreen-620-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-splashscreen-620-300.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-splashscreen-868-420.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-splashscreen-868-420.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-120-120.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-150-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-150-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-210-210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-210-210.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-270-270.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-squarelogo-270-270.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-storelogo-50-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-storelogo-50-50.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-storelogo-70-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-storelogo-70-70.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-storelogo-90-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windows-storelogo-90-90.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-appicon-106-106.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-appicon-106-106.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-appicon-44-44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-appicon-44-44.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-appicon-62-62.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-appicon-62-62.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-mediumtile-150-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-mediumtile-150-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-mediumtile-210-210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-mediumtile-210-210.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-mediumtile-360-360.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-mediumtile-360-360.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-smalltile-170-170.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-smalltile-170-170.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-smalltile-71-71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-smalltile-71-71.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-smalltile-99-99.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-smalltile-99-99.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-storelogo-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-storelogo-120-120.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-storelogo-50-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-storelogo-50-50.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-storelogo-70-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows/windowsphone-storelogo-70-70.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square310x310Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-24.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Square71x71Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer.Shared/pwa-images/windows10/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer/aot.profile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample.RayTracer/aot.profile
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.RayTracer/wwwroot/staticwebapp.config.json:
--------------------------------------------------------------------------------
1 | {
2 | "navigationFallback": {
3 | "rewrite": "/index.html",
4 | "exclude": [
5 | "*.{css,js}",
6 | "*.{png}",
7 | "*.{c,h,wasm,clr,pdb,dat,txt,json}"
8 | ]
9 | },
10 | "mimeTypes": {
11 | ".json": "text/json"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Server.Net7/Program.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.AspNetCore.Builder;
2 | using Microsoft.Extensions.DependencyInjection;
3 | using Uno.Wasm.Bootstrap.Server;
4 |
5 | namespace Uno.Wasm.Sample.Server.Net7
6 | {
7 | public class Program
8 | {
9 | public static void Main(string[] args)
10 | {
11 | var builder = WebApplication.CreateBuilder(args);
12 |
13 | // Add services to the container.
14 |
15 | builder.Services.AddControllers();
16 |
17 | var app = builder.Build();
18 |
19 | // Configure the HTTP request pipeline.
20 |
21 | app.UseAuthorization();
22 |
23 | app.UseUnoFrameworkFiles();
24 |
25 | app.MapControllers();
26 | app.UseStaticFiles();
27 | app.MapFallbackToFile("index.html");
28 |
29 | app.Run();
30 | }
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Server.Net7/Uno.Wasm.Sample.Server.Net7.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | enable
6 | LatestMajor
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Server.Net7/WeatherForecast.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Uno.Wasm.Sample.Server.Net7
4 | {
5 | public class WeatherForecast
6 | {
7 | public DateOnly Date { get; set; }
8 |
9 | public int TemperatureC { get; set; }
10 |
11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
12 |
13 | public string? Summary { get; set; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Server.Net7/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft.AspNetCore": "Warning"
6 | }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample.Server.Net7/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft.AspNetCore": "Warning"
6 | }
7 | },
8 | "AllowedHosts": "*"
9 | }
10 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/AdditionalContent/SomeContent01.txt:
--------------------------------------------------------------------------------
1 | Hello Uno !
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/AdditionalContent/SomeContent02.txt:
--------------------------------------------------------------------------------
1 | Hello Uno !
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/AdditionalContent/SomeContent03.txt:
--------------------------------------------------------------------------------
1 | This file should be copied to the ROOT dist folder.
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/AdditionalContent/SomeContent04.txt:
--------------------------------------------------------------------------------
1 | This file should NOT be copied to dist folder
2 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/Content/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Sample/Content/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/Runtime.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 |
3 | internal sealed class Interop
4 | {
5 | internal sealed class Runtime
6 | {
7 | [MethodImplAttribute(MethodImplOptions.InternalCall)]
8 | public static extern string InvokeJS(string str, out int exceptional_result);
9 | }
10 | }
11 |
12 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/WasmScripts/AppManifest.js:
--------------------------------------------------------------------------------
1 | var UnoAppManifest = {
2 | splashScreenImage: "https://microsoft.github.io/microsoft-ui-xaml/img/winui-logo.png",
3 | splashScreenColor: "transparent",
4 | accentColor: "#f00",
5 | }
6 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Sample/libman.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0",
3 | "defaultProvider": "cdnjs",
4 | "libraries": []
5 | }
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/Runtime.cs:
--------------------------------------------------------------------------------
1 | using System.Runtime.CompilerServices;
2 |
3 | internal sealed class Interop
4 | {
5 | internal sealed class Runtime
6 | {
7 | [MethodImplAttribute(MethodImplOptions.InternalCall)]
8 | public static extern string InvokeJS(string str, out int exceptional_result);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/WasmScripts/AppManifest.js:
--------------------------------------------------------------------------------
1 | var UnoAppManifest = {
2 | splashScreenImage: "https://microsoft.github.io/microsoft-ui-xaml/img/winui-logo.png",
3 | splashScreenColor: "#00f",
4 | accentColor: "#f00",
5 | }
6 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | define(() => {
2 | var txt = document.createTextNode("'test' dependency loaded successfully. Open F12 console to see output.");
3 | var parent = document.getElementById('uno-body');
4 | parent.append(txt);
5 | });
6 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-144-144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-144-144.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-192-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-192-192.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-48-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-512-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-512-512.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-72-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-72-72.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-96-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/android/android-launchericon-96-96.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/chrome/chrome-extensionmanagementpage-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/chrome/chrome-extensionmanagementpage-48-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/chrome/chrome-favicon-16-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/chrome/chrome-favicon-16-16.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/chrome/chrome-installprocess-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/chrome/chrome-installprocess-128-128.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-128-128.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-16-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-16-16.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-256-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-256-256.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-32-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-32-32.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-48-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-48-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-64-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-64-64.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-90-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-general-90-90.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-marketplace-128-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-marketplace-128-128.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-marketplace-512-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/firefox/firefox-marketplace-512-512.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-1024-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-1024-1024.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-120-120.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-152-152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-152-152.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-180-180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-180-180.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-76-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-appicon-76-76.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1024-768.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1024-768.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1242-2208.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1242-2208.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1334-750.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1334-750.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1536-2048.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-1536-2048.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-2048-1536.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-2048-1536.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-2208-1242.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-2208-1242.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-640-1136.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-640-1136.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-640-960.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-640-960.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-750-1334.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-750-1334.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-768-1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/ios/ios-launchimage-768-1024.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-24-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-24-24.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-30-30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-30-30.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-42-42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-42-42.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-54-54.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-smallsquare-54-54.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-splashscreen-1116-540.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-splashscreen-1116-540.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-splashscreen-620-300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-splashscreen-620-300.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-splashscreen-868-420.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-splashscreen-868-420.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-120-120.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-150-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-150-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-210-210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-210-210.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-270-270.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-squarelogo-270-270.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-storelogo-50-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-storelogo-50-50.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-storelogo-70-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-storelogo-70-70.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-storelogo-90-90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windows-storelogo-90-90.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-appicon-106-106.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-appicon-106-106.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-appicon-44-44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-appicon-44-44.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-appicon-62-62.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-appicon-62-62.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-mediumtile-150-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-mediumtile-150-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-mediumtile-210-210.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-mediumtile-210-210.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-mediumtile-360-360.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-mediumtile-360-360.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-smalltile-170-170.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-smalltile-170-170.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-smalltile-71-71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-smalltile-71-71.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-smalltile-99-99.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-smalltile-99-99.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-storelogo-120-120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-storelogo-120-120.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-storelogo-50-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-storelogo-50-50.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-storelogo-70-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows/windowsphone-storelogo-70-70.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square310x310Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-24.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Square71x71Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet6.Aot/wwwroot/pwa-images/windows10/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet7/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet7/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet7/favicon.ico
--------------------------------------------------------------------------------
/src/Uno.Wasm.SampleNet7/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.SampleNet7/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/src/Uno.Wasm.Static Linking/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Aot.Net6/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Aot.UITests/aotTests.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Aot.UITests/aotTests.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Aot.UITests/example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Aot.UITests/example.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Aot.UITests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uno.wasm.staticlinking.aot.uitests",
3 | "version": "0.0.0",
4 | "description": "Uno.Wasm.StaticLinking.Aot.UITests",
5 | "main": "app.js",
6 | "author": {
7 | "name": ""
8 | },
9 | "scripts": {
10 | "build": "tsc --build",
11 | "clean": "tsc --build --clean"
12 | },
13 | "devDependencies": {
14 | "@types/node": "^14.14.7",
15 | "typescript": "^4.0.5"
16 | },
17 | "dependencies": {
18 | "puppeteer": "^14.1.2"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Aot.UITests/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "target": "es6",
5 | "lib": ["es6"],
6 | "sourceMap": true
7 | },
8 | "exclude": [
9 | "node_modules"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Embedded/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Interpreter/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.PgAot.Net6/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.PgAot.Net6/aot.profile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.PgAot.Net6/aot.profile
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.PgAot.ProfileGen.Net6/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Server.net7/Program.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.AspNetCore.Builder;
2 | using Microsoft.Extensions.DependencyInjection;
3 | using Uno.Wasm.Bootstrap.Server;
4 |
5 | namespace Uno.Wasm.Sample.Server.Net7
6 | {
7 | public class Program
8 | {
9 | public static void Main(string[] args)
10 | {
11 | var builder = WebApplication.CreateBuilder(args);
12 |
13 | // Add services to the container.
14 |
15 | builder.Services.AddControllers();
16 |
17 | var app = builder.Build();
18 |
19 | // Configure the HTTP request pipeline.
20 |
21 | app.UseAuthorization();
22 |
23 | app.UseUnoFrameworkFiles();
24 |
25 | app.MapControllers();
26 | app.UseStaticFiles();
27 | app.MapFallbackToFile("index.html");
28 |
29 | app.Run();
30 | }
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Server.net7/Uno.Wasm.StaticLinking.Server.net7.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | enable
6 | major
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Server.net7/WeatherForecast.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Uno.Wasm.Sample.Server.Net7
4 | {
5 | public class WeatherForecast
6 | {
7 | public DateOnly Date { get; set; }
8 |
9 | public int TemperatureC { get; set; }
10 |
11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
12 |
13 | public string? Summary { get; set; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Server.net7/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft.AspNetCore": "Warning"
6 | }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Server.net7/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft.AspNetCore": "Warning"
6 | }
7 | },
8 | "AllowedHosts": "*"
9 | }
10 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/Validations.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | InPlace
7 | true
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side.a/1.2/side.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side.a/1.2/side.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side.a/1.2/st,simd/side.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side.a/1.2/st,simd/side.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side2.a/1.2/st,simd/side2.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side2.a/1.2/st,simd/side2.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side2.a/1.3/side2.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side2.a/1.3/side2.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side3.a/1.3/side3.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side3.a/1.3/side3.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side3.a/1.4/side3.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side3.a/1.4/side3.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side3.a/1.4/st,simd/side3.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side3.a/1.4/st,simd/side3.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/1.3/side4.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/1.3/side4.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/2.0/side4.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/2.0/side4.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/3.1/side4.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/3.1/side4.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/3.1/st,simd/side4.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/3.1/st,simd/side4.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/5.0/side4.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/native/side4.a/5.0/side4.a
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/hello.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/side_module/hello.wasm
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/hello.wasm.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["main.c"],"names":[],"mappings":"wh2BAcA,iBAEA,qBACA,6BACA"}
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/main.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include
5 |
6 | #define WASM_EXPORT __attribute__((visibility("default")))
7 |
8 | int test_add(int a, int b);
9 | float test_add_float(float a, float b);
10 | typedef int (*test_add_func)(int, int);
11 | typedef float (*test_add_float_func)(float, float);
12 | typedef double (*test_add_double_func)(double, double);
13 |
14 | WASM_EXPORT int main(int argc, char** argv) {
15 | void* hModule = dlopen("side.wasm", 0);
16 |
17 | test_add_float_func test_add_float_ptr = (test_add_float_func)dlsym(hModule, "test_add_float");
18 | float res2 = test_add_float_ptr(22.1f, 22.1f);
19 | }
20 |
21 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/main.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/side_module/main.wasm
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/pre.js:
--------------------------------------------------------------------------------
1 | var Module = { dynamicLibraries: ['side.wasm'] };
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/server.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | if sys.version_info[0] == 2:
4 |
5 | import SimpleHTTPServer
6 | import SocketServer
7 |
8 | PORT = 8000
9 |
10 | class Handler(SimpleHTTPServer.SimpleHTTPRequestHandler):
11 | pass
12 |
13 | Handler.extensions_map['.wasm'] = 'application/wasm'
14 |
15 | httpd = SocketServer.TCPServer(("", PORT), Handler)
16 |
17 | print ("python 2 serving at port", PORT)
18 | httpd.serve_forever()
19 |
20 |
21 | if sys.version_info[0] == 3:
22 |
23 | import http.server
24 | import socketserver
25 |
26 | PORT = 8000
27 |
28 | Handler = http.server.SimpleHTTPRequestHandler
29 | Handler.extensions_map['.wasm'] = 'application/wasm'
30 |
31 | with socketserver.TCPServer(("", PORT), Handler) as httpd:
32 | print("python 3 serving at port", PORT)
33 | httpd.serve_forever()
34 |
35 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/side.wasm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.StaticLinking.Shared/side_module/side.wasm
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/side_module/version_test.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include
5 |
6 | #define WASM_EXPORT __attribute__((visibility("default")))
7 |
8 | extern "C" {
9 | WASM_EXPORT const char* CUSTOM_FUNCTION_NAME() {
10 | auto version = (char*)::malloc(strlen(CUSTOM_VERSION) + 1);
11 | strcpy(version, CUSTOM_VERSION);
12 | return version;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/test.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 | #include
5 | #include
6 | #include
7 |
8 | #define WASM_EXPORT __attribute__((visibility("default")))
9 |
10 | extern "C" {
11 | WASM_EXPORT int additional_native_add(int a, int b);
12 | }
13 |
14 | WASM_EXPORT int additional_native_add(int a, int b) {
15 | printf("additional_native_add(%d, %d)\r\n", a, b);
16 | return a + b;
17 | }
18 |
19 | WASM_EXPORT int test_gl() {
20 | GLuint programObject;
21 | glGetString(GL_VENDOR);
22 | SDL_Init(SDL_INIT_VIDEO);
23 | return 0;
24 | }
25 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Shared/test2.cpp:
--------------------------------------------------------------------------------
1 | #include
2 | #include
3 | #include
4 |
5 | #define WASM_EXPORT __attribute__((visibility("default")))
6 |
7 | extern "C" {
8 | WASM_EXPORT int additional_native_add2(int a, int b);
9 | }
10 |
11 | WASM_EXPORT int additional_native_add2(int a, int b) {
12 | printf("additional_native_add2(%d, %d)\r\n", a, b);
13 | return a + b;
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.Simd.net7/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.StaticLinking.net7/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.AbsoluteIntermediate/Directory.Build.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $([System.IO.Path]::GetDirectoryName($([MSBuild]::GetPathOfFileAbove('.gitignore', '$(MSBuildThisFileDirectory)'))))\
5 | $(RepoRoot)\artifacts\bin\$(Configuration)\$(Platform)\
6 | $(BaseOutputPath)$(MSBuildProjectName)\
7 | $(RepoRoot)\artifacts\obj\$(Platform)\$(MSBuildProjectName)\
8 | $(BaseIntermediateOutputPath)\$(Configuration)
9 | $(BaseIntermediateOutputPath)Generated Files\
10 | $(RepoRoot)packages\
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.AbsoluteIntermediate/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Uno.Wasm.Test.Empty
6 | {
7 | class Program
8 | {
9 | static void Main(string[] args)
10 | {
11 | Console.WriteLine("Main");
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.AbsoluteIntermediate/Uno.Wasm.Tests.AbsoluteIntermediate.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | Exe
6 | false
7 |
8 | InterpreterAndAOT
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Electron/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Uno.Wasm.Test.Empty
6 | {
7 | class Program
8 | {
9 | static void Main(string[] args)
10 | {
11 | Console.WriteLine("Main");
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Electron/Uno.Wasm.Tests.Electron.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | Exe
6 | false
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Electron/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | define(() => {
2 | var txt = document.createTextNode("'test' dependency loaded successfully. Open F12 console to see output.");
3 | var parent = document.getElementById('uno-body');
4 | parent.append(txt);
5 | });
6 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Electron/wwwroot/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uno.wasm.tests.electron",
3 | "version": "1.0.0",
4 | "description": "Uno Wasm Electron Test",
5 | "main": "electron-main.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "start": "electron ."
9 | },
10 | "author": "",
11 | "license": "ISC",
12 | "devDependencies": {
13 | "electron": "^4.0.4"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Empty/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Uno.Wasm.Test.Empty
6 | {
7 | class Program
8 | {
9 | static void Main(string[] args)
10 | {
11 | Console.WriteLine("Main");
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Empty/Uno.Wasm.Test.Empty.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | Exe
6 | false
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Shared/Runtime.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 | using System.Runtime.InteropServices.ComTypes;
5 | using System.Runtime.InteropServices.JavaScript;
6 |
7 | namespace WebAssembly
8 | {
9 | internal sealed class Runtime
10 | {
11 | ///
12 | /// Invokes Javascript code in the hosting environment
13 | ///
14 | internal static string InvokeJS(string str)
15 | {
16 | Console.WriteLine($"Invoking {str}");
17 | return Interop.InvokeJS(str);
18 | }
19 | }
20 |
21 | internal static partial class Interop
22 | {
23 | [JSImport("globalThis.Uno.WebAssembly.Bootstrap.Bootstrapper.invokeJS")]
24 | public static partial string InvokeJS(string value);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.Shared/Uno.Wasm.Tests.Shared.projitems:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
5 | true
6 | 237820d2-9ebd-4e55-b5c3-9b50e628b8d3
7 |
8 |
9 | Uno.Wasm.Tests.Shared
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.TypeScript/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Uno.Wasm.Test.Empty
6 | {
7 | class Program
8 | {
9 | static void Main(string[] args)
10 | {
11 | Console.WriteLine("Main");
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.TypeScript/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | var txt = document.createTextNode("'test' dependency loaded successfully. Open F12 console to see output.");
2 | var parentNode = document.getElementById('uno-body');
3 | parentNode.append(txt);
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.TypeScript/ts/test.ts:
--------------------------------------------------------------------------------
1 | var txt = document.createTextNode("'test' dependency loaded successfully. Open F12 console to see output.");
2 | var parentNode = document.getElementById('uno-body');
3 | parentNode.append(txt);
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Tests.TypeScript/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "none",
4 | "declaration": false,
5 | "diagnostics": true,
6 | "noImplicitAny": true,
7 | "outFile": "WasmScripts/test.js",
8 | "locale": "en-US",
9 | "target": "es2015"
10 | },
11 | "include": [
12 | "ts/**/*.ts"
13 | ]
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threading.UITests/aotTests.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Threading.UITests/aotTests.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threading.UITests/example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.Wasm.Threading.UITests/example.png
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threading.UITests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "uno.wasm.threading.uitests",
3 | "version": "0.0.0",
4 | "description": "Uno.Wasm.threading.UITests",
5 | "main": "app.js",
6 | "author": {
7 | "name": ""
8 | },
9 | "scripts": {
10 | "build": "tsc --build",
11 | "clean": "tsc --build --clean"
12 | },
13 | "devDependencies": {
14 | "@types/node": "^14.14.7",
15 | "typescript": "^4.0.5"
16 | },
17 | "dependencies": {
18 | "puppeteer": "^24.10.0"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threading.UITests/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "target": "es6",
5 | "lib": ["es6"],
6 | "sourceMap": true
7 | },
8 | "exclude": [
9 | "node_modules"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threads.Aot/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threads.Shared/Uno.Wasm.Threads.Shared.projitems:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
5 | true
6 | b474457d-dbcd-4795-a2ab-ec3f09e53198
7 |
8 |
9 | Uno.Wasm.Threads.Shared
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threads.Shared/WasmScripts/test.js:
--------------------------------------------------------------------------------
1 | define(() => {
2 | document.body.innerHTML = "";
3 | });
4 |
5 | var Interop = {
6 | appendResult: function (str) {
7 | var txt = document.createTextNode(str);
8 | var parent = document.getElementById('results');
9 | parent.appendChild(txt, parent.lastChild);
10 | }
11 | };
12 |
13 | var DotNet = {
14 | invokeOnMainThread: function (str) {
15 | let getApplyUpdateCapabilitiesMethod = BINDING.bind_static_method("[Uno.Wasm.Threads] Uno.Wasm.Sample.Program:MainThreadCallback");
16 | getApplyUpdateCapabilitiesMethod();
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.Threads/LinkerConfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.WebCIL/Microsoft.NET.WebAssembly.Webcil/Internal/Constants.cs:
--------------------------------------------------------------------------------
1 | // Licensed to the .NET Foundation under one or more agreements.
2 | // The .NET Foundation licenses this file to you under the MIT license.
3 |
4 | namespace Uno.Wasm.WebCIL.Internal;
5 |
6 | internal static unsafe class Constants
7 | {
8 | public const int WC_VERSION_MAJOR = 0;
9 | public const int WC_VERSION_MINOR = 0;
10 | }
11 |
--------------------------------------------------------------------------------
/src/Uno.Wasm.WebCIL/WasmWebcil/Helpers/WebcilWasmWrapperHelper.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using Uno.Wasm.WebCIL;
3 |
4 | namespace Uno.Wasm.WebCIL.Helpers;
5 |
6 | internal static class WebcilWasmWrapperHelper
7 | {
8 | private static readonly FieldInfo FieldInfoPrefix = typeof(WebcilWasmWrapper)
9 | .GetField("s_wasmWrapperPrefix", BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.GetField)!;
10 |
11 | public static byte[] GetPrefix()
12 | {
13 | #if NET7_0_OR_GREATER
14 | return GetPrefixValue>().ToArray();
15 | #else
16 | return GetPrefixValue();
17 | #endif
18 | }
19 |
20 | private static T GetPrefixValue()
21 | {
22 | return (T)FieldInfoPrefix.GetValue(null)!;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/Uno.WasmSample WithSpace Aot/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Uno.WasmSample.WithSpace.Aot
4 | {
5 | class Program
6 | {
7 | static void Main(string[] args)
8 | {
9 | Console.WriteLine("Main");
10 |
11 | Console.WriteLine("Mono Runtime Mode: " + Environment.GetEnvironmentVariable("UNO_BOOTSTRAP_MONO_RUNTIME_MODE"));
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.WasmSample WithSpace Aot/Uno.WasmSample.WithSpace.Aot.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/Uno.WasmSample WithSpace Aot/aot.profile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/Uno.WasmSample WithSpace Aot/aot.profile
--------------------------------------------------------------------------------
/src/Uno.WasmSample WithSpace/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Uno.Wasm.Test.Empty
6 | {
7 | class Program
8 | {
9 | static void Main(string[] args)
10 | {
11 | Console.WriteLine("Main");
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Uno.WasmSample WithSpace/Uno.WasmSample.WithSpace.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | net10.0
5 | Exe
6 | false
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/src/WasmAot.UITests/README.md:
--------------------------------------------------------------------------------
1 | # WasmAot.UITests
2 |
--------------------------------------------------------------------------------
/src/WasmAot.UITests/aotTests.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/WasmAot.UITests/aotTests.png
--------------------------------------------------------------------------------
/src/WasmAot.UITests/example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/unoplatform/Uno.Wasm.Bootstrap/de09e235be22ce72ec70a0324045f24ccd3f5321/src/WasmAot.UITests/example.png
--------------------------------------------------------------------------------
/src/WasmAot.UITests/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "wasm-aot.uitests",
3 | "version": "0.0.0",
4 | "description": "WasmAot.UITests",
5 | "main": "app.js",
6 | "author": {
7 | "name": ""
8 | },
9 | "scripts": {
10 | "build": "tsc --build",
11 | "clean": "tsc --build --clean"
12 | },
13 | "devDependencies": {
14 | "@types/node": "^14.14.7",
15 | "typescript": "^4.0.5"
16 | },
17 | "dependencies": {
18 | "puppeteer": "^14.1.2"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/WasmAot.UITests/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "module": "commonjs",
4 | "target": "es6",
5 | "lib": ["es6"],
6 | "sourceMap": true
7 | },
8 | "exclude": [
9 | "node_modules"
10 | ]
11 | }
12 |
--------------------------------------------------------------------------------
/version.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
3 | "version": "10.0-dev.{height}",
4 | "nuGetPackageVersion": {
5 | "semVer": 2.0
6 | },
7 | "publicReleaseRefSpec": [
8 | "^refs/heads/main$",
9 | "^refs/heads/release/stable/\\d+(?:\\.\\d+)?$"
10 | ],
11 | "cloudBuild": {
12 | "setAllVariables": true,
13 | "buildNumber": {
14 | "enabled": true
15 | }
16 | },
17 | "release": {
18 | "branchName": "release/stable/{version}",
19 | "firstUnstableTag": "dev"
20 | }
21 | }
--------------------------------------------------------------------------------