Skip to content

Commit 96c8c05

Browse files
committed
Fixed warnings.
1 parent 83ed3a8 commit 96c8c05

File tree

6 files changed

+5
-29
lines changed

6 files changed

+5
-29
lines changed

CommunityToolkit.Mvvm.SourceGenerators/ComponentModel/TransitiveMembersGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private SyntaxTree LoadSourceSyntaxTree()
121121
/// <param name="attributeData">The <see cref="AttributeData"/> for the current attribute being processed.</param>
122122
/// <param name="classDeclaration">The <see cref="ClassDeclarationSyntax"/> node to process.</param>
123123
/// <param name="classDeclarationSymbol">The <see cref="INamedTypeSymbol"/> for <paramref name="classDeclaration"/>.</param>
124-
/// <param name="sourceSyntaxTree">The <see cref="CodeAnalysis.SyntaxTree"/> for the target parsed source.</param>
124+
/// <param name="sourceSyntaxTree">The <see cref="Microsoft.CodeAnalysis.SyntaxTree"/> for the target parsed source.</param>
125125
private void OnExecute(
126126
GeneratorExecutionContext context,
127127
AttributeData attributeData,

CommunityToolkit.WinUI.UI.Animations/Properties/SkipLocalsInitAttribute.cs

Lines changed: 0 additions & 24 deletions
This file was deleted.

CommunityToolkit.WinUI.UI.Media/Brushes/PipelineBrush.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace CommunityToolkit.WinUI.UI.Media
1717
public sealed class PipelineBrush : XamlCompositionEffectBrushBase
1818
{
1919
/// <summary>
20-
/// Gets or sets the source for the current pipeline (defaults to a <see cref="BackdropSourceExtension"/> with <see cref="Microsoft.UI.Xaml.Media.AcrylicBackgroundSource.Backdrop"/> source).
20+
/// Gets or sets the source for the current pipeline (defaults to a <see cref="BackdropSourceExtension"/>).
2121
/// </summary>
2222
public PipelineBuilder Source { get; set; }
2323

CommunityToolkit.WinUI.UI.Media/Effects/BlendEffect.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace CommunityToolkit.WinUI.UI.Media
2020
public sealed class BlendEffect : PipelineEffect
2121
{
2222
/// <summary>
23-
/// Gets or sets the input to merge with the current instance (defaults to a <see cref="BackdropSourceExtension"/> with <see cref="Microsoft.UI.Xaml.Media.AcrylicBackgroundSource.Backdrop"/> source).
23+
/// Gets or sets the input to merge with the current instance (defaults to a <see cref="BackdropSourceExtension"/>).
2424
/// </summary>
2525
public PipelineBuilder? Source { get; set; }
2626

CommunityToolkit.WinUI.UI.Media/Effects/CrossFadeEffect.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace CommunityToolkit.WinUI.UI.Media
2020
public sealed class CrossFadeEffect : PipelineEffect
2121
{
2222
/// <summary>
23-
/// Gets or sets the input to merge with the current instance (defaults to a <see cref="BackdropSourceExtension"/> with <see cref="Microsoft.UI.Xaml.Media.AcrylicBackgroundSource.Backdrop"/> source).
23+
/// Gets or sets the input to merge with the current instance (defaults to a <see cref="BackdropSourceExtension"/>).
2424
/// </summary>
2525
public PipelineBuilder? Source { get; set; }
2626

CommunityToolkit.WinUI.UI.Media/Visuals/PipelineVisualFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace CommunityToolkit.WinUI.UI.Media
1919
public sealed class PipelineVisualFactory : PipelineVisualFactoryBase
2020
{
2121
/// <summary>
22-
/// Gets or sets the source for the current pipeline (defaults to a <see cref="BackdropSourceExtension"/> with <see cref="AcrylicBackgroundSource.Backdrop"/> source).
22+
/// Gets or sets the source for the current pipeline (defaults to a <see cref="BackdropSourceExtension"/>).
2323
/// </summary>
2424
public PipelineBuilder Source { get; set; }
2525

0 commit comments

Comments
 (0)