Skip to content

Commit

Permalink
Add partial to resolve CsWinRT1028
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlodotexe committed Aug 16, 2024
1 parent 2fcca69 commit c3d33c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace CommunityToolkit.App.Shared.Converters;

public class StringToUriConverter : IValueConverter
public partial class StringToUriConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, string language)
{
Expand Down
2 changes: 1 addition & 1 deletion CommunityToolkit.App.Shared/DocOrSampleTemplateSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace CommunityToolkit.App.Shared;

public class DocOrSampleTemplateSelector : DataTemplateSelector
public partial class DocOrSampleTemplateSelector : DataTemplateSelector
{
public DataTemplate? Document { get; set; }
public DataTemplate? Sample { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace CommunityToolkit.App.Shared.Renderers;
/// <summary>
/// Selects a sample option template for the provided <see cref="IGeneratedToolkitSampleOptionViewModel"/>.
/// </summary>
internal class GeneratedSampleOptionTemplateSelector : DataTemplateSelector
internal partial class GeneratedSampleOptionTemplateSelector : DataTemplateSelector
{
public DataTemplate? BoolOptionTemplate { get; set; }

Expand Down

0 comments on commit c3d33c3

Please sign in to comment.