Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chowarth committed Aug 27, 2024
1 parent f9ccc68 commit 6a44b06
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 5 additions & 3 deletions src/Maui/Prism.Maui/Ioc/ContainerProvider.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable enable
namespace Prism.IoC;

/// <summary>
Expand All @@ -9,8 +10,9 @@ namespace Prism.IoC;
/// <code>
/// public class MyValueConverter : IValueConverter
/// {
/// private ILoggerFacade _logger { get; }
/// public MyValueConverter(ILoggerFacade logger)
/// private readonly ILogger _logger { get; }
///
/// public MyValueConverter(ILogger logger)
/// {
/// _logger = logger;
/// }
Expand Down Expand Up @@ -45,7 +47,7 @@ public class ContainerProvider<T>
/// <summary>
/// The Name used to register the type with the Container
/// </summary>
public string Name { get; set; }
public string? Name { get; set; }

/// <summary>
/// Resolves the specified type from the Application's Container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,4 @@
<ProjectReference Include="..\..\..\src\Maui\Prism.Maui.Rx\Prism.Maui.Rx.csproj" />
</ItemGroup>

<ItemGroup>
<MauiXaml Update="Mocks\Views\MockXamlView.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
</ItemGroup>

</Project>

0 comments on commit 6a44b06

Please sign in to comment.