Skip to content
Merged
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
4 changes: 3 additions & 1 deletion src/Framework/MSBuildEventSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Microsoft.Build.Eventing
/// Changes to existing event method signatures will not be reflected unless you update the <see cref="EventAttribute.Version" /> property or assign a new event ID.
/// </remarks>
[EventSource(Name = "Microsoft-Build")]
internal sealed partial class MSBuildEventSource : EventSource
internal sealed class MSBuildEventSource : EventSource
{
public static class Keywords
{
Expand Down Expand Up @@ -40,6 +40,8 @@ public static class Keywords
/// </summary>
public static MSBuildEventSource Log = new MSBuildEventSource();

private MSBuildEventSource() { }

#region Events

/// <summary>
Expand Down