File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Maui/Prism.Maui/Modularity Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1- namespace Prism . Modularity ;
1+ namespace Prism . Modularity ;
22
3+ /// <summary>
4+ /// The <see cref="ModuleCatalog"/> holds information about the modules that can be used by the
5+ /// application. Each module is described in a <see cref="ModuleInfo"/> class, that records the
6+ /// name and type of the module.
7+ /// </summary>
8+ #if UNO_WINUI
9+ [ Microsoft . UI . Xaml . Markup . ContentProperty ( Name = nameof ( Items ) ) ]
10+ #else
311[ ContentProperty ( nameof ( Items ) ) ]
12+ #endif
413public class ModuleCatalog : ModuleCatalogBase
514{
615
Original file line number Diff line number Diff line change 44
55namespace Prism . Modularity ;
66
7+ /// <summary>
8+ /// Defines the metadata that describes a module.
9+ /// </summary>
10+ #if UNO_WINUI
11+ [ Microsoft . UI . Xaml . Markup . ContentProperty ( Name = nameof ( DependsOn ) ) ]
12+ #else
713[ ContentProperty ( nameof ( DependsOn ) ) ]
14+ #endif
815public partial class ModuleInfo : IModuleInfo
916{
1017 /// <summary>
Original file line number Diff line number Diff line change 2929 </ItemGroup >
3030 <ItemGroup >
3131 <Compile Include =" ..\..\Wpf\Prism.Wpf\**\*.cs" Exclude =" ..\..\Wpf\Prism.Wpf\bin\**\*.cs;..\..\Wpf\Prism.Wpf\obj\**\*.cs" />
32- <Compile Include =" ..\..\Forms \Prism.Forms \Modularity\*.cs" LinkBase =" Modularity" />
32+ <Compile Include =" ..\..\Maui \Prism.Maui \Modularity\*.cs" LinkBase =" Modularity" />
3333 <Compile Remove =" **\*.net45.cs" />
3434 <Compile Remove =" **\*.netcore.cs" />
3535 <Compile Remove =" ..\..\Wpf\Prism.Wpf\Modularity\**" />
You can’t perform that action at this time.
0 commit comments