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
21 changes: 8 additions & 13 deletions .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,26 @@ on:
workflow_dispatch:
pull_request:
push:
branches:
- main
branches: # Specify your branches here
- main # The 'main' branch
- 'releases/*' # The release branches

jobs:
qodana:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
security-events: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0
fetch-depth: 0 # a full history is required for pull request analysis
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2025.1
with:
pr-mode: true
args: --baseline,qodana.sarif.json
pr-mode: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1124377681 }}
QODANA_ENDPOINT: 'https://qodana.cloud'
- uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_127883412 }}
QODANA_ENDPOINT: 'https://qodana.cloud'
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[![Release](https://img.shields.io/github/actions/workflow/status/henrikwidlund/unfoldedcircle-adbtv/github-release.yml?label=Release&logo=github)](https://github.com/henrikwidlund/net-dns/actions/workflows/github-release.yml)
[![CI](https://img.shields.io/github/actions/workflow/status/henrikwidlund/net-dns/ci.yml?label=CI&logo=github)](https://github.com/henrikwidlund/net-dns/actions/workflows/ci.yml)
![Sonar Quality Gate](https://img.shields.io/sonar/quality_gate/henrikwidlund_net-dns?server=https%3A%2F%2Fsonarcloud.io&label=Sonar%20Quality%20Gate&logo=sonarqube)
[![Qodana](https://img.shields.io/github/actions/workflow/status/henrikwidlund/unfoldedcircle-adbtv/qodana_code_quality.yml?branch=main&label=Qodana&logo=github)](https://github.com/henrikwidlund/net-dns/actions/workflows/qodana_code_quality.yml)
[![Version](https://img.shields.io/nuget/v/Theodicean.Makaretu.Dns.svg)](https://www.nuget.org/packages/Theodicean.Makaretu.Dns)

Forks from the following, but modernized and made async:
- [richardschneider/net-dns](https://github.com/richardschneider/net-dns)
- [richardschneider/net-mdns](https://github.com/richardschneider/net-mdns)
Expand Down Expand Up @@ -41,9 +47,9 @@ DNS data model with serializer/deserializer for the wire and "master file" forma

## Getting started

Published releases are available on [NuGet](https://www.nuget.org/packages/Henrik.Makaretu.Dns/). To install, run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console).
Published releases are available on [NuGet](https://www.nuget.org/packages/Theodicean.Makaretu.Dns/). To install, run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console).

PM> Install-Package Henrik.Makaretu.Dns
PM> Install-Package Theodicean.Makaretu.Dns

## Usage

Expand Down Expand Up @@ -116,8 +122,6 @@ The package is licensed under the [MIT](http://www.opensource.org/licenses/mit-l

# net-mdns

[![CI](https://img.shields.io/github/actions/workflow/status/henrikwidlund/net-dns/ci.yml?label=CI&logo=github)](https://github.com/henrikwidlund/net-dns/actions/workflows/ci.yml)
[![Version](https://img.shields.io/nuget/v/Henrik.Makaretu.Dns.Multicast.svg)](https://www.nuget.org/packages/Henrik.Makaretu.Dns.Multicast)
[![docs](https://cdn.rawgit.com/richardschneider/net-mdns/master/doc/images/docs-latest-green.svg)](https://richardschneider.github.io/net-mdns/articles/intro.html)

A simple Multicast Domain Name Service based on [RFC 6762](https://tools.ietf.org/html/rfc6762). Can be used
Expand All @@ -139,13 +143,13 @@ service or service instance.

## Getting started

Published releases are available on [NuGet](https://www.nuget.org/packages/Henrik.Makaretu.Dns.Multicast/). To install, run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console)
Published releases are available on [NuGet](https://www.nuget.org/packages/Theodicean.Makaretu.Dns.Multicast/). To install, run the following command in the [Package Manager Console](https://docs.nuget.org/docs/start-here/using-the-package-manager-console)

PM> Install-Package Henrik.Makaretu.Dns.Multicast
PM> Install-Package Theodicean.Makaretu.Dns.Multicast

or using .NET CLI run the following command in the project folder

> dotnet add package Henrik.Makaretu.Dns.Multicast
> dotnet add package Theodicean.Makaretu.Dns.Multicast

## Usage Service Discovery

Expand Down
Loading
Loading