Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
shell: bash
run: |
mkdir packages
dotnet build src/
dotnet build src/Microsoft.Data.SqlClient.sln

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
using System.Net;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Security;
using System.Security.Principal;
Expand Down Expand Up @@ -1252,7 +1253,7 @@ protected virtual void OnMatchingEventWritten(EventWrittenEventArgs eventData)

#nullable enable

public class XEventScope : IDisposable
public sealed class XEventScope : IDisposable
{
#region Private Fields

Expand Down
Loading