diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index beba557..a83d579 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Get main version id: version @@ -40,7 +40,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.306 + dotnet-version: 9.0.100 - name: Install dependencies run: dotnet restore env: diff --git a/src/Haukcode.sACN/SACNClient.cs b/src/Haukcode.sACN/SACNClient.cs index 2d42698..a29747e 100644 --- a/src/Haukcode.sACN/SACNClient.cs +++ b/src/Haukcode.sACN/SACNClient.cs @@ -56,7 +56,6 @@ public SACNClient(Guid senderId, string senderName, IPAddress localAddress, int Port = port; this.localEndPoint = new IPEndPoint(localAddress, port); - this.packetSubject = new Subject(); this.listenSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);