Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Build/Construction/ProjectRootElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ public void ReloadFrom(string path, bool throwIfUnsavedChanges = true, bool? pre
/// <summary>
/// Reload the existing project root element from the given <paramref name="reader"/>
/// A reload operation completely replaces the state of this <see cref="ProjectRootElement"/> object. This operation marks the
/// object as dirty (see <see cref="ProjectRootElement.MarkDirty"/> for side effects).
/// object as dirty.
///
/// If the new state has invalid XML or MSBuild syntax, then this method throws an <see cref="InvalidProjectFileException"/>.
/// When this happens, the state of this object does not change.
Expand Down
2 changes: 1 addition & 1 deletion src/Framework/BuildEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public DateTime Timestamp
}

/// <summary>
/// Exposes the private <see cref="timestamp"/> field to derived types.
/// Exposes the private timestamp field to derived types.
/// Used for serialization. Avoids the side effects of calling the
/// <see cref="Timestamp"/> getter.
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions src/Framework/CustomBuildEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ namespace Microsoft.Build.Framework
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!CAUTION]
/// In .NET 8 and later and Visual Studio 17.8 and later, this type is deprecated; instead use <see cref="ExtendedCustomBuildEventArgs"/>.
/// For more information, see <see href="https://learn.microsoft.com/dotnet/core/compatibility/sdk/8.0/custombuildeventargs"/>
/// For recommended replacement, see <see href="https://learn.microsoft.com/dotnet/core/compatibility/sdk/8.0/custombuildeventargs#recommended-action" />.
/// In .NET 8 and later and Visual Studio 17.8 and later, this type is deprecated; instead use <xref:Microsoft.Build.Framework.ExtendedCustomBuildEventArgs>.
/// For more information, [this link](https://learn.microsoft.com/dotnet/core/compatibility/sdk/8.0/custombuildeventargs).
/// For recommended replacement, see [this link](https://learn.microsoft.com/dotnet/core/compatibility/sdk/8.0/custombuildeventargs#recommended-action).
/// ]]></format>
/// </remarks>
[Serializable]
Expand Down
2 changes: 1 addition & 1 deletion src/Framework/XamlTypes/BaseProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public string HelpUrl
/// The help file to use when the user hits F1. Must specify <see cref="HelpContext"/> along with this.
/// </summary>
/// <remarks>
/// This property goes along with <see cref="HelpContext"/>. <seealso cref="HelpContext"/>. This
/// This property goes along with <see cref="HelpContext"/>. This
/// form of specifying the help page for a property takes lower precedence than both <see cref="F1Keyword"/>
/// and <see cref="HelpUrl"/>.
/// This field is optional and is culture insensitive.
Expand Down