Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CustomBuildEventArgs deprecation info #9364

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion src/Framework/CustomBuildEventArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
/// Arguments for custom build events.
/// </summary>
/// <remarks>
/// In MSBuild 17.8 and later, this type is deprecated; instead use <see cref="ExtendedCustomBuildEventArgs"/>.
/// In .NET 8 and later and Visual Studio 17.8 and later, this type is deprecated; instead use <see cref="ExtendedCustomBuildEventArgs"/>.
JanKrivanek marked this conversation as resolved.
Show resolved Hide resolved
/// For more information, see <see href="https://learn.microsoft.com/dotnet/core/compatibility/sdk/8.0/custombuildeventargs"/>
/// For recommended replacement, see <see https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/8.0/custombuildeventargs#recommended-action/>

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'The character(s) '/' cannot be used at this location.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'The character(s) '/' cannot be used at this location.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (Linux Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'The character(s) '/' cannot be used at this location.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'The character(s) '/' cannot be used at this location.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr (macOS Core)

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'The character(s) '/' cannot be used at this location.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'An identifier was expected.'

Check failure on line 16 in src/Framework/CustomBuildEventArgs.cs

View check run for this annotation

Azure Pipelines / msbuild-pr

src/Framework/CustomBuildEventArgs.cs#L16

src/Framework/CustomBuildEventArgs.cs(16,53): error CS1570: (NETCORE_ENGINEERING_TELEMETRY=Build) XML comment has badly formed XML -- 'The character(s) '/' cannot be used at this location.'
JanKrivanek marked this conversation as resolved.
Show resolved Hide resolved
/// </remarks>
[Serializable]
public abstract class CustomBuildEventArgs : LazyFormattedBuildEventArgs
Expand Down
Loading