hcoona / OneDotNet

The DotNet mono repository for me
GNU General Public License v3.0
2 stars 1 forks source link

chore(deps): update dependency prism.unity to v8 #86

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
Prism.Unity nuget major 7.2.0.1422 -> 8.1.97

Release Notes

PrismLibrary/Prism ### [`v8.1.97`](https://togithub.com/PrismLibrary/Prism/releases/tag/v8.1.97) ### Prism 8.1 Prism 8.1 is largely a service pack release for Prism 8.0. If upgrading from Prism 7, it is recommended that you skip Prism 8.0 and instead use 8.1. Additionally Prism 8.1 offers a new Prism.Uno.WInUI platform target for those wishing to build either native WinUI3, or Cross Platform WinUI 3 apps with Uno Platform. #### Bugs Fixed - \[Bug] Prism.Forms.Regions in xaml not working when content view in top child [#​2415](https://togithub.com/PrismLibrary/Prism/issues/2415) - \[Enhancement] Apply AutowireViewModel automatically when using RegisterViewWithRegion [#​2236](https://togithub.com/PrismLibrary/Prism/issues/2236) - \[Enhancement] Support FlyoutPage from Xamarin.Forms 5 [#​2239](https://togithub.com/PrismLibrary/Prism/issues/2239) - Make SetNavigationServiceForPage protected [#​2288](https://togithub.com/PrismLibrary/Prism/issues/2288) - Handle Android Hardware GoBack [#​2391](https://togithub.com/PrismLibrary/Prism/issues/2391) - \[Enhancement] Added more MVVM Friendly APIs for registering Views with a Region (All Platforms) - fix: \[UWP]\[WinUI] Support for RegionManager.IsInDesignMode [#​2419](https://togithub.com/PrismLibrary/Prism/issues/2419) - Use the Target Element BindingContext instead of the Page VM [#​2404](https://togithub.com/PrismLibrary/Prism/issues/2404) - Fixing DI NavigationService resolution [#​2354](https://togithub.com/PrismLibrary/Prism/issues/2354) [#​2218](https://togithub.com/PrismLibrary/Prism/issues/2218) - Add support for WinUI 3 [#​2393](https://togithub.com/PrismLibrary/Prism/issues/2393) - Non-generic register for navigation with view-model [#​2257](https://togithub.com/PrismLibrary/Prism/issues/2257) - Update WPF to .NET 5 [#​2250](https://togithub.com/PrismLibrary/Prism/issues/2250) #### Prism.Forms Additional updates have been done for Prism.Forms.Regions. This better aligns the API with the original WPF API. ##### Android GoBack Note that for the new Android GoBack support for Prism.Forms you must update the OnBackPressed in the MainActivity. You may await the call to handle the result. This result could be generated from either a Dialog or Page Navigation result. ```cs public override async void OnBackPressed() { var result = await PrismPlatform.OnBackPressed(this); if (!result.Success) { System.Diagnostics.Debugger.Break(); if (result.Exception != null) { Console.WriteLine(result.Exception); } } } ``` ### [`v8.0.0.1909`](https://togithub.com/PrismLibrary/Prism/releases/tag/v8.0.0.1909) ### Prism 8.0 RTM It's here, the long awaited Prism 8. This is a huge release and contains a number of breaking changes, bug fixes, new features and even a brand new Platform! So lets officially welcome the Uno Platform to the Prism family of supported platforms! #### CI Feed Access Beginning with Prism 8.0 all CI packages moving forward will only be available to Sponsors on the [Sponsor Connect](https://sponsorconnect.dev) package feed. #### Prism.Core - Notable Changes - Added additional Registration Methods to allow Scoped Services. (**NOTE**: Prism uses scoped lifetimes for Prism.Forms and creates a new scope each time a new Page is navigated to. It is not used anywhere else by Prism) - Added additional Registration Methods to allow Factory / Delegate methods to register services - Added additional Registration Methods to allow registering a single Implementation type for multiple services - **BREAKING** Removed ILoggerFacade and entire Prism.Logging namespace - recommended migration use Prism.Plugin.Logging or other 3rd party logging frameworks - Added ContainerLocator (**NOTE**: This replaces the Common Service Locator in Prism.Wpf) - Added ContainerResolutionException to help better identify what could not be resolved. This includes a `GetErrors` method to help dig in and identify why a type failed to be resolved - DelegateCommand - Added support for PropertyChanged events that pass string.Empty - Added `Await` extension to execute callbacks when working inside of a void method without needing to use `async void` - Added overload for IEventAggregator to provide filter #### Prism.Forms - Notable Changes - Fixed bug with Dialog Service where Dialog would appear behind a Modal page - Enhancement with Dialog Service. The Dialog Service now adds a Modal page with a transparent background to prevent user interaction with Navigation Bars on the NavigationPage, TabbedPage, or MasterDetailPage. This also fixes issues related to the reparenting of content that some people experienced - Consolidated IPlatformNavigationService with INavigationService - Removed Xamarin.Forms DependencyResolver support - INavigationService is now a Scoped service. A new Scope will be set each time the PageNavigationService creates a new page. This allows Prism to reuse the same instance of the NavigationService for your ViewModel, the XAML Navigation Extensions, and within Regions - Changed IPageBehaviorFactory - only ApplyPageBehaviors is exposed, all other methods have been moved to protected virtual methods in PageBehaviorFactory - Added Navigation Error Handler that can be called without using `async void` this allows you to specify a delegate that should be called to handle the exception encountered. - Removed IAutoInitialize - recommended migration use Prism.Magician on Sponsor Connect - Remove AutoRegisterForNavigation - recommended migration use the much more powerful Prism.Magician on Sponsor Connect - NEW FEATURE - Region support for Prism.Forms is HERE!!! #### Prism.Wpf - Notable Changes - Removed Legacy Bootstrapper - Added new PrismBootstrapper that follows the PrismApplication pattern for those apps that cannot use PrismApplication - **BEHAVIOR CHANGE**: ViewModelLocator is now Opt-Out not Opt-In. The ViewModelLocator.AutowireViewModel will automatically be set to true if the DataContext is null and the property has not been set. - Added XAML ContainerProvider to help resolve types in XAML - Fixed CurrentEntry for views not in Journal - Added support for multiple dialog windows - Updated to netcoreapp3.1 - Added generic overloads for RegisterMappings - Added RegisterViewWithRegion generic method #### Changes: - [`3fc5286`](https://togithub.com/PrismLibrary/Prism/commit/3fc52867e5ccdc5c21b7a231232bf06625d14d95) Merge pull request [#​2217](https://togithub.com/PrismLibrary/Prism/issues/2217) from PrismLibrary/uno-vml - [`9cedce4`](https://togithub.com/PrismLibrary/Prism/commit/9cedce4318b2b56bc818733b74b837e4b69915e7) normalize VML Autowire property name - [`a342a38`](https://togithub.com/PrismLibrary/Prism/commit/a342a38a3c5b23339815c5b1570f508b06af28d4) fix working directory - [`7bab4ed`](https://togithub.com/PrismLibrary/Prism/commit/7bab4edee037e7314756861ef9bb745a15e30134) put Uno assemblies in Uno directory - [`28bac21`](https://togithub.com/PrismLibrary/Prism/commit/28bac2198ec5b5585d115c5630294d97259aac3d) prevent duplication of NuGet package artifacts - [`75db987`](https://togithub.com/PrismLibrary/Prism/commit/75db987747fee770bdc7e1922d37e3bea0b0c973) update package feed info - [`06aab3f`](https://togithub.com/PrismLibrary/Prism/commit/06aab3f43aca5b3d8bd6b78f9fcf98f0d45cafb0) use latest nuget - [`10c492a`](https://togithub.com/PrismLibrary/Prism/commit/10c492a29813bbab4ec483847dc54e3e468aca5b) Merge pull request [#​2215](https://togithub.com/PrismLibrary/Prism/issues/2215) from cabauman/docs/xml-comments - [`0eb6d70`](https://togithub.com/PrismLibrary/Prism/commit/0eb6d70d09298cda3e424b63d3ef4cdb534a672e) Add XML Docs to various interfaces and classes - [`9ad0c69`](https://togithub.com/PrismLibrary/Prism/commit/9ad0c694e6b81beea33357a1dc50772e47217162) Merge pull request [#​2194](https://togithub.com/PrismLibrary/Prism/issues/2194) from PrismLibrary/centralpackages
See More - [`3b93818`](https://togithub.com/PrismLibrary/Prism/commit/3b9381807628c717fc53e331d74cb4798f3be289) deploy to Sponsor Connect - [`defb416`](https://togithub.com/PrismLibrary/Prism/commit/defb416104d3c67be5596241020fe8a0e413ecff) specify CentralPackageVersions in the global.json - [`2889307`](https://togithub.com/PrismLibrary/Prism/commit/28893074c0b07c9308a30884626e264e1fc20ec4) remove build targets - [`e0f45df`](https://togithub.com/PrismLibrary/Prism/commit/e0f45dfac11de07eaf2642ac0eeae99663f5db44) wasm test fixes - [`5c5d28a`](https://togithub.com/PrismLibrary/Prism/commit/5c5d28a11c7399289d97ba082fdedc690cca043f) path fixes - [`1f08f40`](https://togithub.com/PrismLibrary/Prism/commit/1f08f40ad7d0c4c652bc9ef00ee049fc10307a59) dependency updates - [`077f1c5`](https://togithub.com/PrismLibrary/Prism/commit/077f1c5083e301953882a5c01df54df3450cd5c2) ensure proper .net core version is installed - [`9cae2a8`](https://togithub.com/PrismLibrary/Prism/commit/9cae2a84f50cd1ffdc83975e628467ae5125e424) add dependabot - [`b232bbe`](https://togithub.com/PrismLibrary/Prism/commit/b232bbe7f11c31b7da34b42dd69a2d9ef8e3d0f4) update UI Build settings - [`4b172d0`](https://togithub.com/PrismLibrary/Prism/commit/4b172d023f2192fec15fd3f058c409175e9ae216) use central package versioning - [`fe087bb`](https://togithub.com/PrismLibrary/Prism/commit/fe087bb74fbe6862c8a022317dcd468eb35514fa) Merge pull request [#​2214](https://togithub.com/PrismLibrary/Prism/issues/2214) from PrismLibrary/remove-auto-stuff - [`b4ff238`](https://togithub.com/PrismLibrary/Prism/commit/b4ff238d76341042738a01c2466369328520928e) fixed e2e app - [`faad634`](https://togithub.com/PrismLibrary/Prism/commit/faad634d663ea1e15fb9a789bec133ae9538e5dd) removed auto initialize for nav parameters - [`868fcfc`](https://togithub.com/PrismLibrary/Prism/commit/868fcfc9ff713adf25b8f0c66d2bdbd5fcbcf3ea) Merge pull request [#​2213](https://togithub.com/PrismLibrary/Prism/issues/2213) from PrismLibrary/remove-auto-stuff - [`6e3fbc9`](https://togithub.com/PrismLibrary/Prism/commit/6e3fbc9cb7ff42a35f8f3583e147b4f7d064c7e9) updated solution to remove mockapp - [`833c11d`](https://togithub.com/PrismLibrary/Prism/commit/833c11db2a181da5a8e189de837fbc1c95173a71) fixed e2e app using the auto register attribute - [`28008c7`](https://togithub.com/PrismLibrary/Prism/commit/28008c7ab68567f63c1175c44d0fd5ab962a1499) removed autoregister feature - [`7a3d2fa`](https://togithub.com/PrismLibrary/Prism/commit/7a3d2fab572f4c22bc38328ab7eae23a7c13b950) added discussions link - [`41c74c4`](https://togithub.com/PrismLibrary/Prism/commit/41c74c4551935a62fb0e097bf80adfd9eec9bcbb) added sponsor action - [`5ddd97b`](https://togithub.com/PrismLibrary/Prism/commit/5ddd97b5c0a9169a081401a766d5448c6b29b4a9) Merge pull request [#​2208](https://togithub.com/PrismLibrary/Prism/issues/2208) from PrismLibrary/housekeeping/fix-codeformatting - [`4da8e8a`](https://togithub.com/PrismLibrary/Prism/commit/4da8e8ab907ebc44de5bd57c1e1cbb0eb15cc64b) Automated dotnet-format update - [`ca46320`](https://togithub.com/PrismLibrary/Prism/commit/ca46320370af99ee68a5aa1f9a188a474bdfefc0) add daily format action - [`2bf255d`](https://togithub.com/PrismLibrary/Prism/commit/2bf255d5b10d1dcaf38713a6b50fd701922091cf) Merge pull request [#​2205](https://togithub.com/PrismLibrary/Prism/issues/2205) from PrismLibrary/xcode-fixes - [`0b9feaa`](https://togithub.com/PrismLibrary/Prism/commit/0b9feaa22e3fa48a4b8c9d50cd1092bd4b87fc17) provide xcode override method - [`be743c2`](https://togithub.com/PrismLibrary/Prism/commit/be743c2bf7236ea7f0274efdf0567743f1c84d2b) Merge pull request [#​2207](https://togithub.com/PrismLibrary/Prism/issues/2207) from ryoasai/Issue-2206 - [`e3a0a96`](https://togithub.com/PrismLibrary/Prism/commit/e3a0a965f4f9159959e6d61acba4b36a20319b0e) Merge branch 'Issue-2206' of https://github.com/ryoasai/Prism into Issue-2206 - [`cd8bc0a`](https://togithub.com/PrismLibrary/Prism/commit/cd8bc0aca2de7b40ff38a6dd5589dd603e5aa56c) Ensure transient reuse irrespective of default reuse setting. - [`6dbcd01`](https://togithub.com/PrismLibrary/Prism/commit/6dbcd01a57f86b338d6542714dae3a18bf7aaaf6) Ensure transient reuse irrespectiveof default reuse setting. - [`66e5b93`](https://togithub.com/PrismLibrary/Prism/commit/66e5b93597dc8bdf8ab11ac643da68f37ad94926) Merge pull request [#​2202](https://togithub.com/PrismLibrary/Prism/issues/2202) from PrismLibrary/issue-2196 - [`ad6a286`](https://togithub.com/PrismLibrary/Prism/commit/ad6a28633368b5d7edf72b54323915ce552cb6cf) fixed propertychanged with empty string - [`2617907`](https://togithub.com/PrismLibrary/Prism/commit/261790736d7f73491d6baffcd35de6afee27f97b) Merge pull request [#​2195](https://togithub.com/PrismLibrary/Prism/issues/2195) from PrismLibrary/unity - [`6e030ec`](https://togithub.com/PrismLibrary/Prism/commit/6e030ec1bf306c342d4ff794673bfeedeed22e36) remove dual registration hack - [`44d200c`](https://togithub.com/PrismLibrary/Prism/commit/44d200c743da31bf986c66900833a65b403ee65a) Merge pull request [#​2192](https://togithub.com/PrismLibrary/Prism/issues/2192) from PrismLibrary/autowire-update - [`8d7ebad`](https://togithub.com/PrismLibrary/Prism/commit/8d7ebad5819dbf0982e5baeb21e9c7fc5e39c553) add Prism.Forms.Regions nuget links - [`a65ae44`](https://togithub.com/PrismLibrary/Prism/commit/a65ae44251c8773d2259a0aa9ea1b0a2b9bb8912) remove DebugType from Prism.Core - [`e2c119b`](https://togithub.com/PrismLibrary/Prism/commit/e2c119bbba19431dc4612452be7d76109bddba01) update sdks - [`e8e2bb8`](https://togithub.com/PrismLibrary/Prism/commit/e8e2bb8ee1d02fcd6729b4feb03fdd9b08791fd9) add missing Prism.Forms.Regions package description - [`ee373eb`](https://togithub.com/PrismLibrary/Prism/commit/ee373eba76923bca0204574e0aefd7e3c32669fb) Prevent AutowireViewModel if BindingContext has been set - [`1203c29`](https://togithub.com/PrismLibrary/Prism/commit/1203c294928ecd44948556c5388ecd62060030b3) \[fix]: check DataContext to prevent creating the ViewModel twice - [`2f81418`](https://togithub.com/PrismLibrary/Prism/commit/2f81418d5fb71425d13b216a088008c3be1695e1) Merge pull request [#​2191](https://togithub.com/PrismLibrary/Prism/issues/2191) from PrismLibrary/dialog-improvements - [`6526c6e`](https://togithub.com/PrismLibrary/Prism/commit/6526c6eaa31c019c7b415b92403264fae8382f76) added more overrides - [`24b8b15`](https://togithub.com/PrismLibrary/Prism/commit/24b8b15ae7a9d1e01d87c02d246457a23ebdbe58) dialog service improvements - [`763982e`](https://togithub.com/PrismLibrary/Prism/commit/763982ef6550d49c823658fb2435ada65c8b35a8) Merge pull request [#​2185](https://togithub.com/PrismLibrary/Prism/issues/2185) from pavinan/patch-1 - [`b48e9f9`](https://togithub.com/PrismLibrary/Prism/commit/b48e9f975a47e5c6d502d50e74a11fd4ff8e9981) Fixed Twitter URLs. - [`e4ee8b8`](https://togithub.com/PrismLibrary/Prism/commit/e4ee8b880ee9fd7cf1aa34dad00e8a9c178af16a) Update README.md - [`4049b3e`](https://togithub.com/PrismLibrary/Prism/commit/4049b3e0cd977cae60a6cdc301c68c859097e84b) Merge pull request [#​2181](https://togithub.com/PrismLibrary/Prism/issues/2181) from PrismLibrary/transparent-modal - [`3edc501`](https://togithub.com/PrismLibrary/Prism/commit/3edc501c362ce321fc127047be8226b7baff7e5d) fix iOS modal transparency - [`6daceb0`](https://togithub.com/PrismLibrary/Prism/commit/6daceb0c87ab2db8d7be6d042493977e2bebd983) Merge pull request [#​2180](https://togithub.com/PrismLibrary/Prism/issues/2180) from PrismLibrary/module-manager - [`75256c0`](https://togithub.com/PrismLibrary/Prism/commit/75256c07be231a810a244a68926d746f39ea2ad5) add tests for the ModuleManager Extensions - [`413ca57`](https://togithub.com/PrismLibrary/Prism/commit/413ca5759d1fa8a270a59bcbb7ee55f34d11fda6) add ModuleInfo collection to IModuleManager - [`5a06d41`](https://togithub.com/PrismLibrary/Prism/commit/5a06d4184a5675b6b0d8b2a4a3391dc56b402faf) Merge pull request [#​2178](https://togithub.com/PrismLibrary/Prism/issues/2178) from PrismLibrary/remove-lagcy-bootstrappers - [`59d1eba`](https://togithub.com/PrismLibrary/Prism/commit/59d1eba694514736888cbc5070ce28c9a9b27aa5) fixing test - change in underlying DryIoc API reference - [`44de606`](https://togithub.com/PrismLibrary/Prism/commit/44de606ec65538e3458446cd49bcbc00a523851b) fix moq resolution with DryIocContainerExtension - [`88b90b9`](https://togithub.com/PrismLibrary/Prism/commit/88b90b919cc26333a60ab5b4086ac910562929d9) removed legacy bootstrapper - [`d5cb510`](https://togithub.com/PrismLibrary/Prism/commit/d5cb510ba4c86c8b57d3bb63eb4100db90846065) Merge pull request [#​2176](https://togithub.com/PrismLibrary/Prism/issues/2176) from PrismLibrary/remove-logger - [`f1bf6ca`](https://togithub.com/PrismLibrary/Prism/commit/f1bf6ca8fd9b44e0b1846a2cabb54b26e3f094c2) add missing shared test project - [`48c2533`](https://togithub.com/PrismLibrary/Prism/commit/48c2533cd8bab5f8f3ef9eaec6fce30418a70f92) fixing xml docs - [`86510aa`](https://togithub.com/PrismLibrary/Prism/commit/86510aa9657ca9dcddc3614c439ad73c5cc59f59) remove ILoggerFacade - [`463d18a`](https://togithub.com/PrismLibrary/Prism/commit/463d18aca5e895658c3f06f049bbe7c53b3e6dc5) Merge pull request [#​2175](https://togithub.com/PrismLibrary/Prism/issues/2175) from PrismLibrary/xaml-catalog - [`c200a23`](https://togithub.com/PrismLibrary/Prism/commit/c200a238ed8f91d068b793882ca6e1b11e610c2c) Merge pull request [#​2174](https://togithub.com/PrismLibrary/Prism/issues/2174) from Reapism/patch-1 - [`3c45cd0`](https://togithub.com/PrismLibrary/Prism/commit/3c45cd06c61c1d16bbd1a030257aba44eb7f077c) comment out post build task - [`760e306`](https://togithub.com/PrismLibrary/Prism/commit/760e3061d3767f584be65b39597e55d9b8157cf8) reverted .net core target version - [`3fee86e`](https://togithub.com/PrismLibrary/Prism/commit/3fee86e6c21174d63c0811d6cf078a9d42b72ba5) added tests and fixed backwards compatibility for old file path - [`20e0cb8`](https://togithub.com/PrismLibrary/Prism/commit/20e0cb887416f3421612d4661e02e3014c18ed48) fixed xcopy command to run on the build server - [`b3016d8`](https://togithub.com/PrismLibrary/Prism/commit/b3016d8f3129642bd95b8bb0892ad798b72ef51d) added some tests - [`061d078`](https://togithub.com/PrismLibrary/Prism/commit/061d07876d21b7d372e7a20c3d28f65b38576b99) removed old API for creating xaml catalogs - [`382e691`](https://togithub.com/PrismLibrary/Prism/commit/382e691c0d4962240a01b0df49c7d05e87bb4a26) renamed xaml module catalog - [`6efa943`](https://togithub.com/PrismLibrary/Prism/commit/6efa9430741b7871d2f314d3ee1cce949daecb5d) implemented new XamlResourceCatalog - [`6f3f297`](https://togithub.com/PrismLibrary/Prism/commit/6f3f2972c2c7b34363fe5f5116442de8e03b8534) Fix some formatting and comments. - [`7b614ec`](https://togithub.com/PrismLibrary/Prism/commit/7b614ecc58124ad420b8a047f2b333e771842a55) Merge pull request [#​2173](https://togithub.com/PrismLibrary/Prism/issues/2173) from PrismLibrary/remove-platform-di - [`23527f7`](https://togithub.com/PrismLibrary/Prism/commit/23527f7ed609ce5a25014958d872d7b36b9ff828) Merge pull request [#​2172](https://togithub.com/PrismLibrary/Prism/issues/2172) from PrismLibrary/platformnavigation - [`43a3cbb`](https://togithub.com/PrismLibrary/Prism/commit/43a3cbb8fec6b05a652a56a7d2080b77451057e0) remove DependencyResolver test - [`a4fe2aa`](https://togithub.com/PrismLibrary/Prism/commit/a4fe2aa43075ce39604dfe8aca3042d2431e2e6a) link updates - [`086d30c`](https://togithub.com/PrismLibrary/Prism/commit/086d30c3e7058e1ff2fa0e0e2a74af60f85eb833) update deprecated Icon to use IconImageSource - [`0b1ac68`](https://togithub.com/PrismLibrary/Prism/commit/0b1ac68e774fc0c78a2b206cb40ca6b1a7da3fcc) removes the dependency resolver from PrismApplication - [`818495b`](https://togithub.com/PrismLibrary/Prism/commit/818495b33c31408c3a42f13e7e05c0e742332911) merge IPlatformNavigationService into INavigationService - [`1a355be`](https://togithub.com/PrismLibrary/Prism/commit/1a355bef226fa9368e196e9121a165bf58594fd8) Remove ILoggerFacade from PageNavigationService - [`522799b`](https://togithub.com/PrismLibrary/Prism/commit/522799b1083c7c13b59bdcd80ddaab50d844e6d5) Merge pull request [#​2171](https://togithub.com/PrismLibrary/Prism/issues/2171) from PrismLibrary/vml-opt-out - [`30a5b5b`](https://togithub.com/PrismLibrary/Prism/commit/30a5b5bf010432c8380957d8b195e16b64540d5b) remove debug code - [`c31d9d8`](https://togithub.com/PrismLibrary/Prism/commit/c31d9d801b2de45ff00852eace661c4860f24297) make viewmodellocator opt-out - [`43d1545`](https://togithub.com/PrismLibrary/Prism/commit/43d154586ce946fa08755b84584ee5d21aaca463) Merge pull request [#​2169](https://togithub.com/PrismLibrary/Prism/issues/2169) from PrismLibrary/transparent-modals - [`05e9a73`](https://togithub.com/PrismLibrary/Prism/commit/05e9a737def4a0cea6e5a85804d532dd14f9bee1) updating tests - [`0ca6e0e`](https://togithub.com/PrismLibrary/Prism/commit/0ca6e0e9d2a595d75f95f9a5535137772a0c52e8) use modal page - [`d1646c3`](https://togithub.com/PrismLibrary/Prism/commit/d1646c3d5e4b98b51f3f080343b2bde3d5a4d604) Merge pull request [#​2168](https://togithub.com/PrismLibrary/Prism/issues/2168) from PrismLibrary/region-fixes - [`591bdb0`](https://togithub.com/PrismLibrary/Prism/commit/591bdb08a79d23a90d18a547fec1cd22275db1d0) remove GitHub packages - [`92283bd`](https://togithub.com/PrismLibrary/Prism/commit/92283bd475854f92d370b4ac3bea3068c85a81bc) use base region - [`b83ffd4`](https://togithub.com/PrismLibrary/Prism/commit/b83ffd490c6956b46ac37780bf6d9c12fea61e8e) change to RegisterForRegionNavigation - fixes [#​2166](https://togithub.com/PrismLibrary/Prism/issues/2166) - [`d9f8368`](https://togithub.com/PrismLibrary/Prism/commit/d9f8368f964c5dc2c4e38e8bf0c435c946735ec6) Merge pull request [#​2165](https://togithub.com/PrismLibrary/Prism/issues/2165) from PrismLibrary/package-descriptions - [`9fa8493`](https://togithub.com/PrismLibrary/Prism/commit/9fa8493f704861b0c0015121f1cac3b338028908) update package descriptions - [`804739e`](https://togithub.com/PrismLibrary/Prism/commit/804739e711772b4af6b0949dd5cc0770f3171702) Merge pull request [#​2077](https://togithub.com/PrismLibrary/Prism/issues/2077) from PrismLibrary/wip-regions - [`09ecf4a`](https://togithub.com/PrismLibrary/Prism/commit/09ecf4aa45e6ab9e6e6b26fa72b2306c5245b087) hold back CollectionView Adapter - [`3726ad1`](https://togithub.com/PrismLibrary/Prism/commit/3726ad1affce174e3885bdc28e671af5f76eb6a0) fix LayoutView bindings - [`468f1ff`](https://togithub.com/PrismLibrary/Prism/commit/468f1ff392921bc8ec87112f6a4a695345a28231) simplifying Carousel Item Binding - [`614a038`](https://togithub.com/PrismLibrary/Prism/commit/614a038096c57cce4edc2470bb42107e4e68b915) Merge pull request [#​2164](https://togithub.com/PrismLibrary/Prism/issues/2164) from ebariche/dev/eb/update-to-uno-3 - [`cb93dd9`](https://togithub.com/PrismLibrary/Prism/commit/cb93dd97ac6b418df0d6486858c8a848ea194167) Update to Uno 3.0 - [`e995276`](https://togithub.com/PrismLibrary/Prism/commit/e99527606eb4aa33aa4319cb30aa9f0ad80b5c9b) updates and fixes for Carousels and registration - [`bc2fadb`](https://togithub.com/PrismLibrary/Prism/commit/bc2fadb1748b3134d6ea5e1fbc3fa6f5569fc572) Registration updates - [`829475b`](https://togithub.com/PrismLibrary/Prism/commit/829475b14612772c5a1be103b9c14019ddea2f8a) Merge pull request [#​2163](https://togithub.com/PrismLibrary/Prism/issues/2163) from Algorithman/DirectoryModuleCatalogSpelling - [`29167bc`](https://togithub.com/PrismLibrary/Prism/commit/29167bcd8bd682774ff9831985c2345d5df567ba) Fixed spelling error: GetNotAlreadyLoadedModuleInfos - [`493b91f`](https://togithub.com/PrismLibrary/Prism/commit/493b91fbdbf486ba014d33f7ff51c3a6666a18b6) handle null RegionManager on Region - [`c5729b7`](https://togithub.com/PrismLibrary/Prism/commit/c5729b71c62eeb7753d899d2ce060483be99fe44) build updates - [`2317805`](https://togithub.com/PrismLibrary/Prism/commit/2317805072ed900ec4d6a780ed493e9aaa09fca7) Update Region Module demos - [`46f38e4`](https://togithub.com/PrismLibrary/Prism/commit/46f38e4277a0f3c5821cde05dbc163b036c893a9) update module registrations - [`8d2b2eb`](https://togithub.com/PrismLibrary/Prism/commit/8d2b2eb7fe0a2f79e5fab5f714756b7e82839ffa) implementing adapters - [`9525981`](https://togithub.com/PrismLibrary/Prism/commit/95259812c941a64fe51b79e561f69f1c76156b77) use delegate registration for Region Adapter Mappings & Behaviors - [`16e376a`](https://togithub.com/PrismLibrary/Prism/commit/16e376aacb6119c8a379a632bd6016639a18573c) fixing sln file - [`b70f870`](https://togithub.com/PrismLibrary/Prism/commit/b70f870755d7e55c85a9aaa83a46989b3b86241c) remove support for Partial Views - [`c1fa5dd`](https://togithub.com/PrismLibrary/Prism/commit/c1fa5ddd1e7ad3bc800dc91817ca652a6ad854ce) delay region created and tracking of INavigationService - [`3c3460c`](https://togithub.com/PrismLibrary/Prism/commit/3c3460c2631a53cbe34c18dec696a1050c6b486a) Fixing lifecycle so Region created once fully parented to the Page - [`ed97ba9`](https://togithub.com/PrismLibrary/Prism/commit/ed97ba93527ab19fec78566577a7e0db988a102b) fixing sln file - [`099f27e`](https://togithub.com/PrismLibrary/Prism/commit/099f27e1d06c271bc2bfed81a7a14c89c020efd1) adding Prism.Forms.Regions to main solution - [`17c3225`](https://togithub.com/PrismLibrary/Prism/commit/17c32252eb4c2d646619259f3a8a32d85a48fe6f) getting Region Navigation working - [`2d793b9`](https://togithub.com/PrismLibrary/Prism/commit/2d793b94762109352e10f33982836f9809c8f768) adding Region Module to E2E app - [`dc59903`](https://togithub.com/PrismLibrary/Prism/commit/dc59903b7d1514471701eb1555dc9042f6d41256) fixing Module State - [`75e8db4`](https://togithub.com/PrismLibrary/Prism/commit/75e8db4505a14ad777994794c771ddefe6740d2b) update to Xamarin.Forms 4.5 - [`34863fa`](https://togithub.com/PrismLibrary/Prism/commit/34863fa07e5e782577a618fa2b969ed90ccc0707) cross-plat sharing and region manager implementation - [`b023dd6`](https://togithub.com/PrismLibrary/Prism/commit/b023dd616648c6c2ec6ea132c888875e04932119) wip regions - [`59cc94b`](https://togithub.com/PrismLibrary/Prism/commit/59cc94b3d99abb63f068f39a3f100cdf50475a4d) Merge pull request [#​2147](https://togithub.com/PrismLibrary/Prism/issues/2147) from Jesus805/master - [`4906e5f`](https://togithub.com/PrismLibrary/Prism/commit/4906e5f21c07133901f5303cb2817327101ce8f6) Merge pull request [#​2143](https://togithub.com/PrismLibrary/Prism/issues/2143) from PrismLibrary/lifo - [`01f629a`](https://togithub.com/PrismLibrary/Prism/commit/01f629a9ba4f432dcafd9c0dbe0db66476926331) adding test suite for containers - [`6c5344e`](https://togithub.com/PrismLibrary/Prism/commit/6c5344ecd3747484a02453b9331775e53f537eb1) allow multiple registrations with Last In First Out - [`c71957a`](https://togithub.com/PrismLibrary/Prism/commit/c71957ad56c0cfedf479d46dcb1870c96232d86c) updated readme with pluralsight links - [`8bcca7c`](https://togithub.com/PrismLibrary/Prism/commit/8bcca7cb2f774cdc415bea626500ab806725c5d5) Update SelectorItemsSourceSyncBehavior.cs - [`4eeacaf`](https://togithub.com/PrismLibrary/Prism/commit/4eeacaf012fa6aea1089c012dbfbf53481db026e) Merge pull request [#​2146](https://togithub.com/PrismLibrary/Prism/issues/2146) from Jesus805/master - [`6d44a1e`](https://togithub.com/PrismLibrary/Prism/commit/6d44a1ed689884d7eddb944fb4351c15ddac9918) XML Documentation for Dryloc.Wpf, Unity.Wpf and Prism.Core - [`10365d5`](https://togithub.com/PrismLibrary/Prism/commit/10365d5f46c2e5b7713ae19b58188a71f56d4679) Merge pull request [#​2145](https://togithub.com/PrismLibrary/Prism/issues/2145) from Jesus805/master - [`302d93d`](https://togithub.com/PrismLibrary/Prism/commit/302d93d9faf9ddc7a74823b9c1207815b0e8fc8e) Removed extra to - [`ec3fad3`](https://togithub.com/PrismLibrary/Prism/commit/ec3fad3957ace663bd47729f65749da555ec77e9) space - [`d9a0853`](https://togithub.com/PrismLibrary/Prism/commit/d9a0853782eade1ffc56f2b971f2be6d718187e0) Added XML comments to IDialogParameters - [`88f69bc`](https://togithub.com/PrismLibrary/Prism/commit/88f69bc207ee00e8cfed70cb3fcf1b553274f7fa) Fixed some spelling mistakes in ParametersBase - [`b2be9cc`](https://togithub.com/PrismLibrary/Prism/commit/b2be9cc4cd1139431a012bb13dbaa59d66787095) Merge pull request [#​2067](https://togithub.com/PrismLibrary/Prism/issues/2067) from Jesus805/master - [`695606b`](https://togithub.com/PrismLibrary/Prism/commit/695606bb506d819a690897d59d32aafdaee49e8e) Merge pull request [#​2069](https://togithub.com/PrismLibrary/Prism/issues/2069) from gayaK/master - [`750a914`](https://togithub.com/PrismLibrary/Prism/commit/750a9140e07d7b5bd85d93396678a66c82d52ebb) add Prism.Templates issue link - [`6e7a514`](https://togithub.com/PrismLibrary/Prism/commit/6e7a514ff5396ac8a342b5ea97d9838cb3555b31) Removed duplicate catalog documentation parameter - [`efe9497`](https://togithub.com/PrismLibrary/Prism/commit/efe9497ef527cb8068f68f1507880f50743e3daf) Changed IModuleCatalogExtensions comment - [`a4c0bf0`](https://togithub.com/PrismLibrary/Prism/commit/a4c0bf0e2a55bb0fe3d8e1ab45488929a2a4792f) Add documentation to various classes in Prism.Wpf - [`6964272`](https://togithub.com/PrismLibrary/Prism/commit/69642722c7905906975e96fb8c95b944cdb68f0b) Added Documentation to PrismApplication - [`41f7cd8`](https://togithub.com/PrismLibrary/Prism/commit/41f7cd8c721e04922188c99a6c564ba6bdaeefd1) Added Documentation to IModuleCatalogExtensions - [`ebf8724`](https://togithub.com/PrismLibrary/Prism/commit/ebf8724e1a1946838ba9bbf9a9d101160745bca1) Added documentation to MVVMHelpers - [`03cdfaa`](https://togithub.com/PrismLibrary/Prism/commit/03cdfaa7744a04944581aed95c00704955ec623a) Merge pull request [#​2139](https://togithub.com/PrismLibrary/Prism/issues/2139) from unoplatform/dev/jela/uno-fix-ios - [`a2a956e`](https://togithub.com/PrismLibrary/Prism/commit/a2a956e86c1b91165fe1341bb4c7a9e0e3ea0841) ci: Reduce nuget restore logging level to normal - [`65f6cf2`](https://togithub.com/PrismLibrary/Prism/commit/65f6cf213dd0d6db96d2e5ab885c8c4dbaef1506) fix(uno): Fix iOS e2e is not starting properly - [`00834e9`](https://togithub.com/PrismLibrary/Prism/commit/00834e936a3962589d57006b7648dc5da300510d) Merge pull request [#​2138](https://togithub.com/PrismLibrary/Prism/issues/2138) from MikelThief/MikelThief-readme-patch - [`34c94c5`](https://togithub.com/PrismLibrary/Prism/commit/34c94c5e22c251106b7fc15a86106cf523caa07b) Fix link to Uno Nuget package - [`83e8865`](https://togithub.com/PrismLibrary/Prism/commit/83e8865fb1ec97374a5e341477c7ebd61c56b264) Merge pull request [#​2122](https://togithub.com/PrismLibrary/Prism/issues/2122) from bmarinov/feature/use_recommended_dryioc_cfg_method - [`a7ae9d9`](https://togithub.com/PrismLibrary/Prism/commit/a7ae9d9a8616f68b9d642319a0ce87d618aab5d7) Merge pull request [#​2136](https://togithub.com/PrismLibrary/Prism/issues/2136) from janschreier/NameCorrection - [`2c7765b`](https://togithub.com/PrismLibrary/Prism/commit/2c7765bf59e575b6e072ce8f7677abe1dd8445e6) Merge pull request [#​2133](https://togithub.com/PrismLibrary/Prism/issues/2133) from PrismLibrary/sourcelink - [`1b8a823`](https://togithub.com/PrismLibrary/Prism/commit/1b8a823d715c418fac0acaceb1ca6bc9d5965549) Renamed IDestructibleRegionBehavior to DestructibleRegionBehavior - [`b64d6ac`](https://togithub.com/PrismLibrary/Prism/commit/b64d6ace6bd8e65d46e95c69033ef37fe8adf450) simplify deterministic build - [`21322cd`](https://togithub.com/PrismLibrary/Prism/commit/21322cd9dc99725ffdfd3b108458318d51b225f9) move packing logic into src folder - [`a7908b7`](https://togithub.com/PrismLibrary/Prism/commit/a7908b7c679871d75a954d4d5cb8bcc64153a371) remove deprecated test - [`00edb25`](https://togithub.com/PrismLibrary/Prism/commit/00edb25b081cf299c25293942cdb8fa9e8ca997a) bump sdk to 3.1.300 for build prop fixes - [`a8f19f2`](https://togithub.com/PrismLibrary/Prism/commit/a8f19f2683010d28fb80411d0e3d78314ca58b90) use boots for latest stable sdks - [`a66981e`](https://togithub.com/PrismLibrary/Prism/commit/a66981e75f06155c6e7bc27760d83d6c4a38534b) sourcelink and deterministic build updates - [`09abd76`](https://togithub.com/PrismLibrary/Prism/commit/09abd763b8aa6ca43c124551737d976bcd80b315) embed License in package - [`8ab8773`](https://togithub.com/PrismLibrary/Prism/commit/8ab877324b352f34d469e281f084895566256c45) publish symbols packages - [`7d5360f`](https://togithub.com/PrismLibrary/Prism/commit/7d5360f4b3539757d8288b5867c096c9290b894b) removed IMasterDetailPageOptions from sample - [`7519bd9`](https://togithub.com/PrismLibrary/Prism/commit/7519bd907364141e7ce37f0800eb9dbb0741e8af) Replace deprecated dryioc configuration method call - [`7b0e6d6`](https://togithub.com/PrismLibrary/Prism/commit/7b0e6d64170dbb4126b38efaa66a037abd18b476) call Xamarin.Forms Init - [`6d8ee46`](https://togithub.com/PrismLibrary/Prism/commit/6d8ee46c1823fc4fb5b21cdc8fc383ea3a9f4bcb) Merge pull request [#​2113](https://togithub.com/PrismLibrary/Prism/issues/2113) from unoplatform/dev/jela/playstore-update - [`5d9a418`](https://togithub.com/PrismLibrary/Prism/commit/5d9a418d5ba33ce3ccc33e0e8015886c22af5fa8) test: Adjust for updated android SDK Android-28 emulator name - [`6244391`](https://togithub.com/PrismLibrary/Prism/commit/62443913ae3347156502df8d0eea2f6c7f46b6ef) Merge pull request [#​2110](https://togithub.com/PrismLibrary/Prism/issues/2110) from PrismLibrary/scopednavigation - [`0374fcb`](https://togithub.com/PrismLibrary/Prism/commit/0374fcb9cc941ee2859c384e47c706df307b00c6) all disable UI Tests - [`2a69d55`](https://togithub.com/PrismLibrary/Prism/commit/2a69d553093126cce7d96652b495cbe92af5d8b1) ensure the PrismApplication is created before we set a main page - [`6544370`](https://togithub.com/PrismLibrary/Prism/commit/6544370fc6646906e252deb96da085aea4a5f6c5) fixing issue with DryIoc injecting a Page to IPageAware - [`165e697`](https://togithub.com/PrismLibrary/Prism/commit/165e697be428f1ddbe1605beb7c63e5ca567a7d0) let Xamarin.Forms restore transitively - [`34f5f76`](https://togithub.com/PrismLibrary/Prism/commit/34f5f763c79ae3569e83cc214d13635a54028eef) update test dependencies - [`87c793b`](https://togithub.com/PrismLibrary/Prism/commit/87c793be58fca6679d1b9da42b3e5cfbb52731e3) update Unity.Container - [`ac6b487`](https://togithub.com/PrismLibrary/Prism/commit/ac6b487c1da23ef4467fe8b79b231404ff1f9ead) adding shared container - [`2896142`](https://togithub.com/PrismLibrary/Prism/commit/28961421de610b34c992d169a1e225f9758d8720) fixing Scoped Navigation - [`5c33d8c`](https://togithub.com/PrismLibrary/Prism/commit/5c33d8ceaf54b53eb5405609048099e51a471713) scope navigation - [`527faaf`](https://togithub.com/PrismLibrary/Prism/commit/527faaf3138a1acc55ee813856ae1a202359f288) Merge pull request [#​2103](https://togithub.com/PrismLibrary/Prism/issues/2103) from [rssllgrrtt/Adding-Device.InvokeOnMainThreadAsync-to-DeviceService-#​2043](https://togithub.com/rssllgrrtt/Adding-Device.InvokeOnMainThreadAsync-to-DeviceService-/issues/2043) - [`1b7218c`](https://togithub.com/PrismLibrary/Prism/commit/1b7218c44044aebb0535cbddc61433a6d9dae4a7) Removed view centric hooks from DeviceService - [`b6faee2`](https://togithub.com/PrismLibrary/Prism/commit/b6faee2a5571a2f8e7e68268bb36efbb81b88841) Merge pull request [#​2108](https://togithub.com/PrismLibrary/Prism/issues/2108) from unoplatform/dev/jela/uwp-fix - [`ca30a61`](https://togithub.com/PrismLibrary/Prism/commit/ca30a61789a05191581c84cfd509d5fc0dd58839) Merge pull request [#​2105](https://togithub.com/PrismLibrary/Prism/issues/2105) from d3fkn1ght/xmlDocs2 - [`cb7620b`](https://togithub.com/PrismLibrary/Prism/commit/cb7620ba3fe532a96f51ac2951c02903a8867a16) Fix ContainerProviderExtensionFixture - [`a27288e`](https://togithub.com/PrismLibrary/Prism/commit/a27288ef489173856d5de99f8958b988b0632e52) Updated TargetFrameworks, updated to XF 4.6.0.726 and added support for additional methods and properties from the Device class. - [`e06a353`](https://togithub.com/PrismLibrary/Prism/commit/e06a353a0522f661d9a5d8d02f69c36e5623f772) fix(uno): Fix Windows initialization sequence - [`3ee01c9`](https://togithub.com/PrismLibrary/Prism/commit/3ee01c9eaa917c6e0d75b79d77e1eb76f6b940d6) fix: Adjust xml comment in DryIocContainerExtension - [`ee6a519`](https://togithub.com/PrismLibrary/Prism/commit/ee6a519a7b93d03d98313d46a5df8922989eaf1e) Merge pull request [#​2107](https://togithub.com/PrismLibrary/Prism/issues/2107) from PrismLibrary/issue-2106 - [`227ea29`](https://togithub.com/PrismLibrary/Prism/commit/227ea29338a5616e8aa37b82e7811fe648d1d252) using the ContainerLocator as the VML resolver. - [`845f263`](https://togithub.com/PrismLibrary/Prism/commit/845f263a9fb581fa6d6eb1253074ae168c805843) Revert "fixed ConfigureViewModelLocator" - [`4dd403b`](https://togithub.com/PrismLibrary/Prism/commit/4dd403be8fde1ccb6c957cb37e970b3d59de2852) fixed ConfigureViewModelLocator - [`72f1a35`](https://togithub.com/PrismLibrary/Prism/commit/72f1a35dfd5c5876054194e73473b3b99ddcf81c) Added documenation for: - [`ba493ca`](https://togithub.com/PrismLibrary/Prism/commit/ba493caa011d05c4cce992388de6ff308594f889) wrap ctors - [`24945db`](https://togithub.com/PrismLibrary/Prism/commit/24945dbf535936d343a8eb1ac69a1f83f07158d0) setup containers for container extensions - [`581c3f5`](https://togithub.com/PrismLibrary/Prism/commit/581c3f5c01068e59a555f8981f35ebf4ddf3d1a1) Updated to latest Xamarin.Forms (4.5.0.657) and mapped to new Device.InvokeOnMainThreadAsync methods - [`876e930`](https://togithub.com/PrismLibrary/Prism/commit/876e9306d183c0290cca3d71b87fdbe14884b253) Remove ContainerProviderExtension from UnoPlatform - [`e8622d6`](https://togithub.com/PrismLibrary/Prism/commit/e8622d6073f7f301476e91379b845931465567c0) Refactoring unit test codes - [`5c14ec4`](https://togithub.com/PrismLibrary/Prism/commit/5c14ec4d9f8cf2133734dc92d980e4464ff2d5e8) Merge remote-tracking branch 'remotes/prism/master' - [`6270fbe`](https://togithub.com/PrismLibrary/Prism/commit/6270fbe826a164e209de34f392d596f6bcdfd100) Add unit test for ContainerProviderExtension - [`fff8023`](https://togithub.com/PrismLibrary/Prism/commit/fff80233b76197db649947e35577f9b0f97d9a3b) Add XmlnsDefinition of Prism.Ioc namespace. - [`27487ef`](https://togithub.com/PrismLibrary/Prism/commit/27487effa802c68560295008f8038ff5db2cc66a) Fix documentation comment for ContainerProviderExtension.cs - [`94155bb`](https://togithub.com/PrismLibrary/Prism/commit/94155bba28b130ea6cd296a6d5577ba394ba72d1) Added a "BeginInvokeOnMainThreadAsync" method to "IDeviceService" - [`8597347`](https://togithub.com/PrismLibrary/Prism/commit/85973477767369edc24f7ceceaf440d38a336247) Merge pull request [#​2101](https://togithub.com/PrismLibrary/Prism/issues/2101) from unoplatform/dev/jela/uwp-fix - [`d243376`](https://togithub.com/PrismLibrary/Prism/commit/d2433766c155e49b646cf390e1cd072918579212) Merge pull request [#​2100](https://togithub.com/PrismLibrary/Prism/issues/2100) from unoplatform/dev/jela/android-test-optional - [`be92542`](https://togithub.com/PrismLibrary/Prism/commit/be9254286f39193f74a915a897de6a69aa40b108) fix(uno-uwp): Disable library layout generation - [`6bba1a5`](https://togithub.com/PrismLibrary/Prism/commit/6bba1a5898bed7c500a279d3d8f9d4266c6a0a4f) fix(uno-e2e): Disable build fail on android UI tests failure - [`7e4e92a`](https://togithub.com/PrismLibrary/Prism/commit/7e4e92a5c8620446754e1ade994612c27eb87a47) fixing bad docs - [`076a7cf`](https://togithub.com/PrismLibrary/Prism/commit/076a7cf64a19759a0e9583ef65329749ba0dc0c2) Merge pull request [#​2073](https://togithub.com/PrismLibrary/Prism/issues/2073) from WaldemarCoding/master - [`722c45a`](https://togithub.com/PrismLibrary/Prism/commit/722c45a6166fa480d99b2fb5de5649765994aae6) changes requested by dan - [`631660a`](https://togithub.com/PrismLibrary/Prism/commit/631660a099869a6b0a90b21e3c29549f3dcd235c) Merge pull request [#​2075](https://togithub.com/PrismLibrary/Prism/issues/2075) from d3fkn1ght/xmlDocs1 - [`22d8eda`](https://togithub.com/PrismLibrary/Prism/commit/22d8eda923128a5e04d154785d5e79e14459ca88) implement dans comments - [`bb2efd3`](https://togithub.com/PrismLibrary/Prism/commit/bb2efd329f904d6a0922345d48d7db82400c4b62) Solved CS1591 in INavigationParamters\[Internal].cs - [`e0e865e`](https://togithub.com/PrismLibrary/Prism/commit/e0e865ec9905ce6b59fb667b81105da1ca6c6168) Missed one - [`3d48ffc`](https://togithub.com/PrismLibrary/Prism/commit/3d48ffcc005e5bb5e5b4fffe8780fbf3a6bc33a4) Resolved some CS1573,1591 - [`df64def`](https://togithub.com/PrismLibrary/Prism/commit/df64def8462324ec14af7c5dda02baea7dbf0683) Merge pull request [#​2097](https://togithub.com/PrismLibrary/Prism/issues/2097) from PrismLibrary/prismapplication-tests - [`e91dc8a`](https://togithub.com/PrismLibrary/Prism/commit/e91dc8ad9e89219d5226979b9e77b3ff56c43031) Update ParametersBase.cs - [`3c983f9`](https://togithub.com/PrismLibrary/Prism/commit/3c983f9f1df4b07c287bad6f6d33f243f241a196) added tests for PrismApplicationBase - [`2f077f9`](https://togithub.com/PrismLibrary/Prism/commit/2f077f96e383ff20c70c184cc843ca14fb5bc170) Merge pull request [#​2096](https://togithub.com/PrismLibrary/Prism/issues/2096) from PrismLibrary/bootstrapper-tests - [`43f7f5b`](https://togithub.com/PrismLibrary/Prism/commit/43f7f5bad7a40fdb3e2fb4e677e9670656bb2398) Merge pull request [#​2086](https://togithub.com/PrismLibrary/Prism/issues/2086) from PrismLibrary/containerextensions - [`95d1c2a`](https://togithub.com/PrismLibrary/Prism/commit/95d1c2acf9f26c3579265a956085fa900fe2e01d) disable randomly failing test - [`6cd9106`](https://togithub.com/PrismLibrary/Prism/commit/6cd9106d3b5add2755a30986fa6eccc63c998984) Added test to validate required types were registered - [`2036140`](https://togithub.com/PrismLibrary/Prism/commit/203614066d87c9c4e0313f28a30cb09d0ce06581) adding tests for Container Registrations - [`82325a9`](https://togithub.com/PrismLibrary/Prism/commit/82325a9c6cab2922114df165ed2315d9bd7450d1) Merge pull request [#​2084](https://togithub.com/PrismLibrary/Prism/issues/2084) from PrismLibrary/task-extensions - [`5f55d28`](https://togithub.com/PrismLibrary/Prism/commit/5f55d28b79c8d99e997a31f31e72d43994080823) added unit tests - [`82b6bca`](https://togithub.com/PrismLibrary/Prism/commit/82b6bca4e790566c6c0a5917b08b7c67f980d051) added Task extensions for async/void tasks - [`130ed2a`](https://togithub.com/PrismLibrary/Prism/commit/130ed2a3d2a1a19d9183ae4def9ffff7ec8e67ab) Merge pull request [#​2094](https://togithub.com/PrismLibrary/Prism/issues/2094) from unoplatform/dev/jela/uwp-adjust - [`f26ee78`](https://togithub.com/PrismLibrary/Prism/commit/f26ee78920df084c97eea59d18b1330174aa3dc5) fixing file location - [`507652f`](https://togithub.com/PrismLibrary/Prism/commit/507652f89b55033df7005d0123c93df3e34fc19a) fix(WinUI): Remove explicit dependency on CommonServiceLocator - [`fa2fd01`](https://togithub.com/PrismLibrary/Prism/commit/fa2fd011dd9745bdb9c523801d492a8ed2c6683c) fix(Uno): Adjust Prism.Uno UWP library layout - [`a99eeed`](https://togithub.com/PrismLibrary/Prism/commit/a99eeedbd6b111e949a75167550c0f283c4c8598) adding tests for ContainerResolutionException - [`439bc9d`](https://togithub.com/PrismLibrary/Prism/commit/439bc9d02b32291998e75b361180a0a6b1215a82) fixing mocked test - [`70ba338`](https://togithub.com/PrismLibrary/Prism/commit/70ba3384586aa4375e16e05b9d1da7cc3e0e7bfe) adding DefaultRules to DryIocContainerExtension - [`936e3df`](https://togithub.com/PrismLibrary/Prism/commit/936e3dfab2338d747e41ca9934f305689ecd499b) implementing registration overloads - [`14b1cc0`](https://togithub.com/PrismLibrary/Prism/commit/14b1cc0a0657014ef9861dd4ccac5ac62dda8981) adding ContainerResolutionException [#​2078](https://togithub.com/PrismLibrary/Prism/issues/2078) - [`4d898d4`](https://togithub.com/PrismLibrary/Prism/commit/4d898d46f22285f6535e7df71cfbb8549cf03ce0) adding CreateScope - [`0cb5b2e`](https://togithub.com/PrismLibrary/Prism/commit/0cb5b2ea1cce506472e752385efdd666ede97c59) remove extra space - [`9f75d1a`](https://togithub.com/PrismLibrary/Prism/commit/9f75d1a7782761905ac41086b0787657a3c262d0) Merge pull request [#​2089](https://togithub.com/PrismLibrary/Prism/issues/2089) from PrismLibrary/autoregister - [`460c0b8`](https://togithub.com/PrismLibrary/Prism/commit/460c0b88c6c1c6452eef35d676bae8f3415e12a4) fixing uno rebase - [`2f4b0f5`](https://togithub.com/PrismLibrary/Prism/commit/2f4b0f557ca6e99aaf349f69f24f2f8f810869ab) fixing issues with parallel tests - [`9bdc2ea`](https://togithub.com/PrismLibrary/Prism/commit/9bdc2ea77a63b6bfe32855b31715a280f8589a89) adding tests for AutoRegisterForNavigation - fixes [#​2088](https://togithub.com/PrismLibrary/Prism/issues/2088) - [`66a24a9`](https://togithub.com/PrismLibrary/Prism/commit/66a24a9700c91c87c9a83dd64f113b1f8dda6622) Merge pull request [#​2092](https://togithub.com/PrismLibrary/Prism/issues/2092) from PrismLibrary/bootstrapper-tests - [`94b4462`](https://togithub.com/PrismLibrary/Prism/commit/94b4462409d662191901d275fa844ec3d2c2d112) Added unit tests for new PrismBootstrapperBase - [`05c82a2`](https://togithub.com/PrismLibrary/Prism/commit/05c82a298aa0c940e2e8e754e6c070f39966e50d) Merge pull request [#​2091](https://togithub.com/PrismLibrary/Prism/issues/2091) from lv1il0s/master - [`2c434c0`](https://togithub.com/PrismLibrary/Prism/commit/2c434c065f998cb306773d2c056767eb9e5820c4) Move reference to Xamarin.Forms.Mocks to nuget/packageReference - [`291d1fe`](https://togithub.com/PrismLibrary/Prism/commit/291d1fea1c805c960ce466573de307c939c2e21c) Merge pull request [#​2090](https://togithub.com/PrismLibrary/Prism/issues/2090) from unoplatform/dev/jela/uitests-adjust - [`b0dcdee`](https://togithub.com/PrismLibrary/Prism/commit/b0dcdee491182d61ac8a1c58f8c85b263377e7d8) fix(uno): Use set-runtime step to set the mono version used on macOS builds - [`017ed03`](https://togithub.com/PrismLibrary/Prism/commit/017ed03a705f47615f0c9429d369128072c89a04) fix: Adjust Dialog test to use the default dialog - [`e072949`](https://togithub.com/PrismLibrary/Prism/commit/e072949c8509c6f7c7a78d452a3ecc687dadc5cf) fix: Restore default test context to WebAssembly This list of changes was [auto generated](https://dev.azure.com/prismlibrary/Prism/\_build/results?buildId=1909\&view=logs).

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.