File tree 3 files changed +18
-2
lines changed
Maui/Prism.Maui/Modularity
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 ;
2
2
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
3
11
[ ContentProperty ( nameof ( Items ) ) ]
12
+ #endif
4
13
public class ModuleCatalog : ModuleCatalogBase
5
14
{
6
15
Original file line number Diff line number Diff line change 4
4
5
5
namespace Prism . Modularity ;
6
6
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
7
13
[ ContentProperty ( nameof ( DependsOn ) ) ]
14
+ #endif
8
15
public partial class ModuleInfo : IModuleInfo
9
16
{
10
17
/// <summary>
Original file line number Diff line number Diff line change 29
29
</ItemGroup >
30
30
<ItemGroup >
31
31
<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" />
33
33
<Compile Remove =" **\*.net45.cs" />
34
34
<Compile Remove =" **\*.netcore.cs" />
35
35
<Compile Remove =" ..\..\Wpf\Prism.Wpf\Modularity\**" />
You can’t perform that action at this time.
0 commit comments