From b08be04fc4022e962b69175c7d3040f6660bd151 Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Thu, 7 Mar 2024 09:14:56 +0100 Subject: [PATCH] suppress xml warnings on build --- .github/workflows/pipeline.yml | 4 +++- src/AVPRClient/AVPRClient.csproj | 4 ++++ src/PackageRegistryService/PackageRegistryService.csproj | 4 ++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index a303fc1..5d88b1f 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -99,4 +99,6 @@ jobs: needs: setup # https://github.com/actions/runner/issues/1173 if: (needs.setup.outputs.tests_any_changed == 'true' || needs.setup.outputs.api_any_changed == 'true' || needs.setup.outputs.client_any_changed == 'true' || needs.setup.outputs.index_any_changed == 'true') && needs.setup.outputs.is_dry_run == 'false' - uses: nfdi4plants/arc-validate-package-registry/.github/workflows/build-and-test.yml@main \ No newline at end of file + uses: nfdi4plants/arc-validate-package-registry/.github/workflows/build-and-test.yml@main + + \ No newline at end of file diff --git a/src/AVPRClient/AVPRClient.csproj b/src/AVPRClient/AVPRClient.csproj index d0c1cb6..e544d39 100644 --- a/src/AVPRClient/AVPRClient.csproj +++ b/src/AVPRClient/AVPRClient.csproj @@ -7,6 +7,10 @@ true + + CS1591;$(NoWarn) + + Kevin Schneider .NET client library for avpr.nfdi4plants.org diff --git a/src/PackageRegistryService/PackageRegistryService.csproj b/src/PackageRegistryService/PackageRegistryService.csproj index fec1b0c..4e0d392 100644 --- a/src/PackageRegistryService/PackageRegistryService.csproj +++ b/src/PackageRegistryService/PackageRegistryService.csproj @@ -12,6 +12,10 @@ true + + CS1591;$(NoWarn) + +